-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div class="w3-container">
<p><span class="hero-text"></span></p>
</div>
<div class="selection-pane">
<label for="task-select" class="selection-label" id="task-label"
>Select Task</label
>
<div class="select" id="task-select">
<select>
<option value="" selected disabled hidden>Task to be Fought</option>
<option value="sorting">Sorting Arrays</option>
<option value="path-finding">Path Finding (Incoming Feature)</option>
</select>
<span class="focus"></span>
</div>
<label for="algo1-select" class="selection-label" id="algo1-label"
>Select Algorithm 1</label
>
<div class="select" id="algo1-select">
<select></select>
<span class="focus"></span>
</div>
<label for="algo2-select" class="selection-label" id="algo2-label"
>Select Algorithm 2</label
>
<div class="select" id="algo2-select">
<select></select>
<span class="focus"></span>
</div>
<div class="fight-button">
<button type="button">Fight!</button>
</div>
</div>
<div id="arena"></div>
<script type="module" src="./js/index.js"></script>
</body>
</html>