-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
29 lines (27 loc) · 1.19 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<style>
</style>
</head>
<body>
<div class="header">
<h1 class="name"><b>Algorithm Visualiser</b></h1>
<h4>Algorithms are a fundamental part of one's programming journey. Research has proven that visualisation has direct links to increased understanding in all domains of life. In order to understand the progression of different algorithms, visualisation can serve as an incredibly helpful tool. </h4>
</div>
<div class="DS">
<h2>Choose Data Structure of Choice</h2>
<div class="ds-buttons">
<button onclick="document.location='array.html'">Array</button>
<button onclick="document.location='index.html'">Trees</button>
<button onclick="document.location='index.html'">Linked List</button>
<button onclick="document.location='index.html'">Graph</button>
<button onclick="document.location='index.html'">Stack</button>
<button onclick="document.location='index.html'">Queue</button>
</div>
</div>
</body>
</html>