-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (46 loc) · 1.59 KB
/
index.html
File metadata and controls
48 lines (46 loc) · 1.59 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<meta name="color-scheme" content="light" />
<meta name="format-detection" content="telephone=no" />
<meta name="author" content="KasraK10, https://github.com/KASRA10" />
<meta name="generator" content="Visual Studio Code" />
<meta
name="designer"
content="Kasra Hosseini - K10 -
https://kasra10design.com, https://github.com/KASRA10"
/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<title>Draggable List</title>
<!-- FontAwesome Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css"
integrity="sha512-DxV+EoADOkOygM4IR9yXP8Sb2qwgidEmeqAEmDKIOfPRQZOWbXCzLC6vjbZyy0vPisbH2SyW27+ddLVCN+OMzQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<main>
<section>
<div class="container">
<h1 class="headLin">10 Big Objects</h1>
<p class="description">
Drag And Drop The Items Into Corresponding Spots
</p>
<ul class="draggable-list" id="draggable-list">
<button class="check-btn" id="check-btn">
Check Order
<i class="fas fa-paper-plane"></i>
</button>
</ul>
</div>
</section>
</main>
<script type="text/javascript" src="./js/main.js"></script>
</body>
</html>