-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (79 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="user-scalable=yes, width=device-width, initial-scale=1, minimum-scale=1">
<link rel="stylesheet" href="styles.css"/>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>Binary Tree & Heap Visualizer</title>
</head>
<body>
<div class="navbar">
<a href="https://github.com/anshuthopsee/binary-tree-visualizer" class="header"></a>
<button class="alt_btn" id="bt_heap_btn"></button>
</div>
<div class="container">
<div class="controls">
<div class="inputs">
<input type="number" placeholder="0-99" min="0" max="99" id="input"/>
<button id="add_button">add</button>
<button id="remove_button"></button>
<button id="clear_button">clear tree</button>
</div>
<div class="numbers_added">
<p class="text left_space">Nos.</p>
<table>
<tbody>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</tbody>
</table>
</div>
</div>
<div class="canvas_container">
<canvas class="canvas" id="canvas" width="1900" height="533"></canvas>
</div>
</div>
<div id="info_bullets">
<h1 class="info_header"></h1>
<p class="point"></p>
<p class="point"></p>
<p class="point"></p>
<p class="point"></p>
<p class="point"></p>
</div>
<script src="index.js"></script>
</body>
</html>