-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
77 lines (65 loc) · 2.44 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
<!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>
</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>