-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (66 loc) · 2.05 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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">
<title>DSA Visualizer</title>
<link rel="stylesheet" href="style/style.css">
<link rel="icon" type="image/x-icon" href="assects/sort.png">
</head>
<body>
<header>
<h1>DSA VISUALIZER</h1>
</header>
<main>
<h2>Data Structures</h2>
<section>
<div class="card">
<a href="stack.html">
<div>
<img src="assects/stack.png" alt="--STACK">
<h2>STACK</h2>
</div>
</a>
</div>
<div class="card">
<a href="queue.html">
<div>
<img src="assects/queue.png" alt="--QUEUE">
<h2>QUEUE</h2>
</div>
</a>
</div>
</section><br>
<h2>Algorithms</h2>
<section>
<div class="card">
<a href="bubbleSort.html">
<div>
<img src="assects/sort.png" alt="--BUBBLE SORT">
<h2>BUBBLE SORT</h2>
</div>
</a>
</div>
<div class="card">
<a href="sieve.html">
<div>
<img src="assects/sieve.png" alt="--SIEVE OF ERATOSTHENES" style="width:200px">
<h2>SIEVE OF ERATOSTHENES</h2>
</div>
</a>
</div>
</section>
</main>
<footer>
<p>By GROUP NO. 16</p>
</footer>
<script>
// function init() {
// let height = '' + Number(window.innerHeight * 0.85)
// document.getElementsByTagName('main')[0].setAttribute("style", "height:" + height + "px");
// }
// window.onload = init();
</script>
</body>
</html>