-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
75 lines (75 loc) · 3.01 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Who's Who?</title>
<link rel="stylesheet" href="styles/flashcard.css">
<link rel="stylesheet" href="webfontkit/stylesheet.css">
<link rel="stylesheet" href="styles/animate.css">
<script src="js/jquery-1.11.2.min.js"></script>
<script src="js/underscore-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tinysort/2.2.2/tinysort.min.js"></script>
</head>
<body>
<header>
<h1>Who's Who?</h1>
<h2 class="current-name">Click Start!</h2>
<div class="controls">
<button id="start" class="button">start</button>
<button id="reset" class="button hidden">reset</button>
<button id="skip" class="button hidden">skip</button>
</div>
<div class="score hidden"><p>0</p></div>
</header>
<div class="score-pop animated hidden">0</div>
<div class="content">
<div class="profile-card hidden" id="tyler">
<img src="photos/Tyler Brooks.png" alt="Tyler">
<a href='samplestudent.html'><h2>Tyler Brooks</h2></a>
</div>
<div class="profile-card hidden" id="diana">
<img src="photos/Diana Jurgielewicz.png" alt="Diana">
<a href='samplestudent.html'><h2>Diana Jurgielewicz</h2></a>
</div>
<div class="profile-card hidden" id="john">
<img src="photos/JohnMoua.png" alt="John">
<a href='samplestudent.html'><h2>John Moua</h2></a>
</div>
<div class="profile-card hidden" id="allyson">
<img src="photos/Allyson Little.png" alt="Allyson Little">
<a href='samplestudent.html'><h2>Allyson Little</h2></a>
</div>
<div class="profile-card hidden" id="kevin">
<img src="photos/Kevin Bauer.png" alt="Kevin Bauer">
<a href='samplestudent.html'><h2>Kevin Bauer</h2></a>
</div>
<div class="profile-card hidden" id="isatu">
<img src="photos/Isatu Conteh.png" alt="Isatu Conteh">
<a href='samplestudent.html'><h2>Isatu Conteh</h2></a>
</div>
<div class="profile-card hidden" id="karen">
<img src="photos/Karen Ochsenreiter.png" alt="Karen Ochsenreiter">
<a href='samplestudent.html'><h2>Karen Ochsenreiter</h2></a>
</div>
<div class="profile-card hidden" id="phil">
<img src="photos/Phil Winston.png" alt="Phil Winston">
<a href='samplestudent.html'><h2>Phil Winston</h2></a>
</div>
<div class="profile-card hidden" id="alif">
<img src="photos/Alif Chowdhury.png" alt="Alif Chowdhury">
<a href='samplestudent.html'><h2>Alif Chowdhury</h2></a>
</div>
<div class="profile-card hidden" id="ammie">
<img src="photos/Ammie Mcculloch.png" alt="Ammie Mcculloch">
<a href='samplestudent.html'><h2>Ammie Mcculloch</h2></a>
</div>
<div class="profile-card hidden" id="biboy">
<img src="photos/Biboy Pratama.png" alt="Biboy Pratama">
<a href='samplestudent.html'><h2>Biboy Pratama</h2></a>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="js/main.js"></script>
<script src="js/flash.js"></script>
</body>
</html>