forked from Pranit5895/Algorithm-Visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAV.txt
50 lines (50 loc) · 2.38 KB
/
AV.txt
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
<!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>Bubble Sort</h3>
<br>
<img src="images/bubble-sort_52333f3e1.webp" height="200px" width="400px">
<p>Discription</p>
<p><a href="#"><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>Insertion Sort</h3>
<br>
<img src="images/insertion sort.jpg" height="200px" width="400px">
<p>Description</p>
<p><a href="#"><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>