-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroups.html
More file actions
95 lines (71 loc) · 3.49 KB
/
groups.html
File metadata and controls
95 lines (71 loc) · 3.49 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<title>Prom 2018 Photo Gallery</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<script src="https://www.gstatic.com/firebasejs/4.10.1/firebase.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="script.js"></script>
<link href="https://fonts.googleapis.com/css?family=Courgette" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/png" href="https://png.pngtree.com/element_pic/00/16/07/17578a5e3e88341.jpg" />
</head>
<body>
<nav>
<div class="nav-wrapper blue lighten-1">
<a href="index.html" class="brand-logo center">Prom 2018</a>
<ul id="nav-mobile" class="left">
<li class="active"><a class="flow-text" href="groups.html">Groups</a></li>
</ul>
<ul id="nav-mobile" class="right">
<li><a class="flow-text" href="pairs.html">Pairs</a></li>
</ul>
</div>
</nav>
<div class="section">
<div class="container">
<div class="row">
<div class="col s12 l6 image">
<img class="materialboxed responsive-img z-depth-5" width="600" src="groups/group1.jpg">
</div>
<div class="col s12 l6">
<img class="materialboxed responsive-img z-depth-5" width="600" src="groups/group2.jpg">
</div>
</div>
<div class="section">
<div class="row">
<div class="col s12 l6">
<img class="materialboxed responsive-img z-depth-5" width="600" src="groups/group3.jpg">
</div>
<div class="col s12 l6">
<img class="materialboxed responsive-img z-depth-5" width="600" src="groups/group4.jpg">
</div>
</div>
</div>
<div class="section">
<div class="row">
<div class="col s12 l6">
<img class="materialboxed responsive-img z-depth-5" width="600" src="groups/group5.jpg">
</div>
<div class="col s12 l6">
<img class="materialboxed responsive-img z-depth-5" width="600" src="groups/group6.jpg">
</div>
</div>
</div>
<ul class="pagination center-align">
<li class="disabled"><a href="#!"><i class="material-icons">chevron_left</i></a></li>
<li class="active blue lighten-1"><a href="#!">1</a></li>
<li class="waves-effect"><a href="groupspage2.html">2</a></li>
<li class="waves-effect"><a href="groupspage3.html">3</a></li>
<li class="waves-effect"><a href="groupspage2.html"><i class="material-icons">chevron_right</i></a></li>
</ul>
<p class="center-align">Created By: Imani Greenidge</p>
</div>
</div>
</body>
</html>