-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 800 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 800 Bytes
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
<!DOCTYPE html>
<head>
<title>Algorithm visualizer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="centre">
<div class="input">
<form id="form1">
<label>enter the number of inputs</label><br>
<input type="text">
<input type="submit">
</form>
<form class="hide" id="form2">
<label>Enter the numbers</label>
<input type="text" class="input_field">
<input type="submit">
</form>
</div>
</div>
<div class="array"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>