forked from itscodenation/class-randomizer-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 1.17 KB
/
index.html
File metadata and controls
40 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>Class Randomizer</title>
<style>
button{
border-radius: 10%;
border-style: ridged;
background-color: silver;
}
body{
background-color: black;
}
h1, div{
color: silver;
}
</style>
</head>
<body>
<h1>Randomly Choose a Student</h1>
<button id ="studentButton">Click Me!</button>
<div id ="studentDisplay"></div>
<h1>Randomly Choose a Teacher</h1>
<button id ="teacherButton">Click Me!</button>
<div id ="teacherDisplay"></div>
<h1>Add a Student to the Class</h1>
<input type = "text" id ="student"><button id="add">Add!</button></input>
<div id ="addedDisplay"></div>
<h1>Add a Teacher to the Class</h1>
<input type = "text" id ="teacher"><button id="addT">Add!</button></input>
<div id ="addedTeachDisplay"></div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src = script.js></script>
</body>
</html>