-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (36 loc) · 1.2 KB
/
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
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Document</title>
<script src="./index.js"></script>
</head>
<body>
<div class="container">
<header>
<h1 class="header">Shuffle and Sort</h1>
</header>
<div class="body">
<div class="button-container">
<button id = 'shuffle' >SHUFFLE</button>
<button id = 'sort'>SORT</button>
</div>
<div id = "item-list" class="card">
<div class="item-1">1</div>
<div class="item-2">2</div>
<div class="item-3">3</div>
<div class="item-4">4</div>
<div class="item-5">5</div>
<div class="item-6">6</div>
<div class="item-7">7</div>
<div class="item-8">8</div>
<div class="item-9">9</div>
</div>
</div>
<div class = "description"> Shuffle and Sort by Rishitosh</div>
</div>
</body>
</html>