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
24 lines (20 loc) · 736 Bytes
/
index.html
File metadata and controls
24 lines (20 loc) · 736 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
<!DOCTYPE html>
<html>
<head>
<title>Class Randomizer</title>
</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>Choose A New Student</h1>
<input type="text" placeholder="New Student.."><button id ="newstudentButton">Click Me!</button>
<p></p>
<h1>Make A New Student</h1>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src = script.js></script>
</body>
</html>