-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 3.23 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 3.23 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
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="row big-row">
<div id="collections-buttons" class="col-4">
<div class="container"><div class="row">
<div class="col-6">
<input type="checkbox" class="btn-check" id="Insert" checked="true">
<label class="btn btn-outline-dark" for="Insert">Insert</label><br>
<input type="checkbox" class="btn-check" id="Remove" checked="true">
<label class="btn btn-outline-dark" for="Remove">Remove</label><br>
</div>
<div class="col-6">
<input type="checkbox" class="btn-check" id="Access" checked="true">
<label class="btn btn-outline-dark" for="Access">Access</label><br>
<input type="checkbox" class="btn-check" id="Search" checked="true">
<label class="btn btn-outline-dark" for="Search">Search</label><br>
</div>
</div></div>
</div>
<div id="collections" class="col-8"></div>
<!-- end row -->
</div>
<div class="row big-row">
<div id="sort-algorithm-buttons" class="col-4">
<div class="container">
<div class="row">
<div class="col-6">
<input type="checkbox" class="btn-check" id="Best" checked="true">
<label class="btn btn-outline-dark" for="Best">Best</label><br>
</div>
<div class="col-6">
<input type="checkbox" class="btn-check" id="Worst" checked="true">
<label class="btn btn-outline-dark" for="Worst">Worst</label><br>
</div>
<!-- end row -->
</div>
<div class="row">
<div class="col-3"></div>
<div class="col-6">
<input type="checkbox" class="btn-check" id="Average" checked="true">
<label class="btn btn-outline-dark" for="Average">Average</label><br>
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
</div>
<div id="sorting-algorithms" class="col-8"></div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<div id="study">
<div class="btn btn-success" id="study-btn">Study</div>
</div>
<script type="module" src="main.js"></script>
</body>
</html>