-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.06 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 1.06 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
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Random Call</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container">
<header>
<h1>Random Call</h1>
<div class="new-team">
<div id="team-button">Create New Team</div>
<div class="new-team-input" id="team-input">
<input id="team-names" type="text" placeholder="Insert names separated by comma">
<div id="create-button">Create</div>
</div>
</div>
<div id="randomize-button">Randomize</div>
<div id="clear-button">Clear</div>
</header>
<main>
<section class="ordered-list">
<h2>The Team:</h2>
<div id="student-list"></div>
</section>
<section class="random-list">
<h2>Random:</h2>
<div id="random-student-list"></div>
</section>
</main>
<footer>
~ Team Ash 2018 ~
</footer>
</div>
<script src="js/script.js"></script>
</body>
</html>