-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (59 loc) · 2.47 KB
/
index.html
File metadata and controls
70 lines (59 loc) · 2.47 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<title>AlgoVisual</title>
<!-- Fonts which are used -->
<link href="https://fonts.googleapis.com/css2?family=Stick&display=swap" rel="stylesheet">
<!-- CSS for style -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- top bar -->
<div id="top-bar">
<a href="#" id="logo">
ALGO
<span style="color: rgb(254,197,21);">VISUAL</span>
</a>
<div id="top-actions-show" class="top-panel-show">
<p class="p1" onclick="generate()">Create</p>
</div>
<div id="actions-hide" class="top-panel-hide">
<button class="btn" onclick="panelhide()">btn</button>
</div>
</div>
<!-- view of array height and size,random array -->
<section class="array-container"></section>
<div id="bottom-bar">
<span id="sort-name">
<a href="#" id="selection" class="selected-viz" title="Selection Sort" onclick="SelectionSort(),disable1()" >selection sort</a>
<a href="#" class="selected-viz" title="Bubble Sort" onclick="BubbleSort()" id="bubble" >bubble sort</a>
<a href="#" id="insertion" class="selected-viz" title="Insertion Sort" onclick="InsertionSort()">insertion sort</a>
</span>
<span class="about"><a href="About.html" target="_blank">About-Us</a></span>
</div>
<div id="right-bar">
<div id="myprogress">
<div id="mybar">
<span id="incvalue"></span>
</div>
</div>
</div>
<div id="left-bar">
<div id="left-panel-show" class="left-panel-show"></div>
<div id="left-panel-hide" class="left-panel-hide">
<button class="btn" onclick="leftpanelhide()">btn</button>
</div>
<div id="left-panel2-hide" class="left-panel2-hide">
<button class="btn" onclick="leftpanelhide2()">btn</button>
</div>
<div id="left-panel2-show" class="left-panel2-show"></div>
</div>
<!-- JavaScript-->
<script src="js/index.js"></script>
</body>
</html>