-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
95 lines (80 loc) · 2.99 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Homepage</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://algorithmvis.github.io/JqueryAndBootstrap/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<style>
body {
display: flex;
flex-direction: column;
}
#buttons,
h1,
h4 {
text-align: center;
color: white;
text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
font-family: 'Montserrat', 'Arial';
}
#buttons {
margin-top: 25px;
width: 100%;
}
button {
margin: 0 auto;
width: 10%;
}
.btn-primary {
display: block;
margin-bottom: 5px;
padding: 1.1em;
}
.background {
background-color: #006dcc;
height: 100px;
width: 100%;
}
#footer {
position: absolute;
bottom: 0px;
}
h4 {
margin-top: 70px;
}
</style>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-7405526437222894",
enable_page_level_ads: true
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118868750-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118868750-1');
</script>
</head>
<body>
<div id="header" class="background">
<h1 id="header">Visualization of algorithms and datastructures</h1>
</div>
<div id="buttons">
<button id="graphs" class="btn btn-primary" onclick="location.href='https://algorithmvis.github.io/Graphs/index.html'">DFS/BFS</button>
<button id="heap" class="btn btn-primary" onclick="location.href='https://algorithmvis.github.io/Heap/index.html'">Heap</button>
<button id="kruskal" class="btn btn-primary" onclick="location.href='https://algorithmvis.github.io/Kruskal/index.html'">Kruskal</button>
<button id="mergesort" class="btn btn-primary" onclick="location.href='https://algorithmvis.github.io/MergeSort/index.html'">MergeSort</button>
<button id="simplesort" class="btn btn-primary" onclick="location.href='https://algorithmvis.github.io/SimpleSort/index.html'">SimpleSort</button>
<button id="unionfind" class="btn btn-primary" onclick="location.href='https://algorithmvis.github.io/UnionFind/index.html'">Union Find</button>
</div>
<div id="footer" class="background">
<h4>By: Kenneth Apeland, Øyvind S. Liland and Philip T. Hoang</h4>
</div>
</body>
</html>