-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Odds and Events</title>
<link rel="stylesheet" href="index.css" />
<script defer src="index.js"></script>
</head>
<body>
<h1>Odds and Events</h1>
<form>
<label>
Add a Number to the Bank
<input id="number" name="number" type="number" />
</label>
<button>Add Number</button>
</form>
<main>
<section id="numberBank">
<h2>Number Bank</h2>
<output></output>
<div>
<button id="sortOne">Sort 1</button>
<button id="sortAll">Sort All</button>
</div>
</section>
<section id="sortedNumbers">
<h2>Sorted Numbers</h2>
<section id="odds">
<h3>Odds</h3>
<output></output>
</section>
<section id="evens">
<h3>Evens</h3>
<output></output>
</section>
</section>
</main>
</body>
</html>