-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 912 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Transfer list from right side to the left side and vice versa">
<meta name="author" content="Mohammad Reza Ebrahimi">
<link rel="stylesheet" href="assets/css/style.css" />
<title>Transfer List</title>
</head>
<body>
<div class="container">
<div class="side left-side"></div>
<div class="mid-side">
<button class="all-to-right">>></button>
<button class="checked-to-right">></button>
<button class="checked-to-left"><</button>
<button class="all-to-left"><<</button>
</div>
<div class="side right-side"></div>
</div>
<script defer src="assets/js/main.js"></script>
</body>
</html>