-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom.html
More file actions
39 lines (32 loc) · 983 Bytes
/
Copy pathrandom.html
File metadata and controls
39 lines (32 loc) · 983 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Student Picker</title>
<link rel="stylesheet" href="random.css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Oswald"/>
</head>
<body>
<div class="center">
<h1>Random Picks</h1>
<button id="getRandom">Get A Random Student!</button>
<input type="number" name="" id="studentNum" value="1" min="1" max="15" >
</div>
<div id="picks">
</div>
</div>
<h1>Let's Pick Some Students!!!</h1>
<div class="enterName">
<p>Add Name!</p>
<input id="studentName" value="Rich, Ray, Ammar, Robbie, Yuhua, Versaviya, Andrew, Alicia, Rachel, Damon, Jesse, Edward, Jillian, Mike, Ethan, Sam, Yan, Ashley, Nicholas, Asami, Alex, Joe, Adam, Patrick, Anjali, Paul, Adam, Rachel" type="text">
<button id="add">Add!</button>
</div>
<div class="parent">
<div id="child">
<ul id="list">
</ul>
</div>
</div>
<script src="random.js"></script>
</body>
</html>