-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (44 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Algorithms</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header class="header">
<div class="dropdown">
<div class="select">
<span class="selected">Select</span>
<div class="caret"></div>
</div>
<ul class="menu">
<li>Burbuja</li>
<li>Insercion</li>
</ul>
</div>
<nav>
<ul class="nav__links">
<li><a href="#">About</a></li>
<li><a href="#">Explanation</a></li>
</ul>
</nav>
<a href="#"><button>Contact</button></a>
</header>
<main>
<h1 id="title">Sorting Algorithms</h1>
<div id="visualizer">
</div>
<div id="inputs">
<input type="number" id="amount-number">
<button id="add-btn">Add</button>
<div id="separator"></div>
<button id="sort-btn">Sort</button>
<button id="clear-btn">Clear</button>
</div>
</main>
<script type="module" src="./index.js"></script>
</body>
</html>