-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
68 lines (68 loc) · 3.4 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
<!DOCTYPE html>
<html>
<title>Algorithm Visualizer</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-light-green.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
<body>
<div class="w3-bar w3-theme">
<a href="#"class="w3-bar-item w3-button w3-padding-16">Home</a>
<a href="#"class="w3-bar-item w3-button w3-padding-16">Help</a>
<a href="#"class="w3-bar-item w3-button w3-padding-16">About</a>
</div>
<header class="w3-container w3-theme w3-padding" id="myHeader" style="min-height:300px">
<div class="w3-center">
<h1 class="w3-xxxlarge w3-animate-bottom"> Open Algorithm Visualizer</h1>
<h4>Choose from below algorithms to get started</h4>
</div>
</header>
<div class="w3-row-padding w3-center w3-margin-top w3-margin-bottom">
<div class="w3-half">
<div class="w3-card w3-container" style="min-height:460px">
<h3>Dijistra's Algo</h3>
<br>
<img src="Algo Visualizer/images/Dijistra's.jpg" height="200px" width="400px">
<p>Discription</p>
<p><a href="Algo Visualizer/dijikstra/index.html"><button class="w3-button w3-theme">Click Here to Get Started</button></a></p>
</div>
</div>
<div class="w3-half">
<div class="w3-card w3-container" style="min-height:460px">
<h3>Binary Search</h3>
<br>
<img src="Algo Visualizer/images/BinarySearch.png" height="200px" width="400px">
<p>Description</p>
<p><a href="Algo Visualizer/binary_tree/index.html"><button class="w3-button w3-theme">Click Here to Get Started</button></a></p>
</div>
</div>
<div class="w3-half">
<div class="w3-card w3-container" style="min-height:460px">
<h3>Selection Sort</h3>
<br>
<img src="Algo Visualizer/images/selectionsort.jpg" height="200px" width="400px">
<p>Discription</p>
<p><a href="Algo Visualizer/Selection sort/index.html"><button class="w3-button w3-theme">Click Here to Get Started</button></a></p>
</div>
</div>
<div class="w3-half">
<div class="w3-card w3-container" style="min-height:460px">
<h3>Bubble Sort</h3>
<br>
<img src="Algo Visualizer/images/bubble-sort-algprithm.jpg" height="200px" width="400px">
<p>Discription</p>
<p><a href="Algo Visualizer/Bubble Sort/index.html"><button class="w3-button w3-theme">Click Here to Get Started</button></a></p>
</div>
</div>
</div>
<footer class="w3-container w3-theme-dark w3-padding-16">
<h3>Made by UPES Open Community</h3>
<div style="position:relative;bottom:55px;" class="w3-tooltip w3-right">
<span class="w3-text w3-theme-light w3-padding">Go To Top</span>
<a class="w3-text-white" href="#myHeader"><span class="w3-xlarge">
<i class="fa fa-chevron-circle-up"></i></span></a>
</div>
</footer>
</body>
</html>