-
Notifications
You must be signed in to change notification settings - Fork 1
/
gallery.html
57 lines (57 loc) · 2.11 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles/gallery.css">
<link rel="stylesheet" href="webfontkit/stylesheet.css">
<script src="js/jquery-1.11.2.min.js"></script>
<script src="js/underscore-min.js"></script>
<title>Gallery View</title>
</head>
<body>
<div class="content">
<div class="profile-card hidden" id="tyler">
<img src="photos/TylerBrooks.png" alt="Tyler">
<a href='samplestudent.html'><h2>Tyler Brooks</h2></a>
</div>
<div class="profile-card hidden" id="diana">
<img src="photos/DianaJurgielewicz.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">
<img src="photos/TylerBrooks.png" alt="Tyler">
<a href='samplestudent.html'><h2>Sample Student</h2></a>
</div>
<div class="profile-card">
<img src="photos/TylerBrooks.png" alt="Tyler">
<a href='samplestudent.html'><h2>Sample Student</h2></a>
</div>
<div class="profile-card">
<img src="photos/TylerBrooks.png" alt="Tyler">
<a href='samplestudent.html'><h2>Sample Student</h2></a>
</div>
<div class="profile-card">
<img src="photos/TylerBrooks.png" alt="Tyler">
<a href='samplestudent.html'><h2>Sample Student</h2></a>
</div>
<div class="profile-card">
<img src="photos/TylerBrooks.png" alt="Tyler">
<a href='samplestudent.html'><h2>Sample Student</h2></a>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>