-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
96 lines (76 loc) · 3.57 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
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
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Photo Gallery - UWEC Waterski</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="css/style.css">
<link rel='stylesheet' type='text/css' media='screen' href='css/gallery.css'>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito">
</head>
<body>
<header>
<h1 class="header">UW - Eau Claire: Waterski and Wakeboard Team</h1>
<div class="navbar">
<a class="navbar-link" href="index.html">Home</a>
<a class="navbar-link" href="practices.html">Practices</a>
<a class="navbar-link" href="tournaments.html">Tournaments</a>
<a class="navbar-link" href="executive.html">Executive Board</a>
<a class="navbar-link" href="gallery.html">Photo Gallery</a>
<a class="navbar-link" href="contact.html">Contact</a>
<a class="navbar-link" href="affiliations.html">Affiliations</a>
<a class="navbar-link" href="equipment.html">Equipment Use</a>
<a class="navbar-link" href="events.html">Social Events</a>
<a class="navbar-link" href="join.html">How to Join</a>
</div>
</header>
<div class="content">
<h1>Gallery</h1>
<div class="gallery">
<div class="galleryimg">
<img src="images/gallery1.JPG" alt="The waterski team together for a group photo">
</div>
<div class="galleryimg">
<img src="images/gallery2.JPG" alt="The team rollerblading down the street">
</div>
<div class="galleryimg">
<img src="images/gallery3.JPG" alt="The team taking a group photo on the back of a boat">
</div>
<div class="galleryimg">
<img src="images/gallery4.JPG" alt="A member waterskiing and making a large splash">
</div>
<div class="galleryimg">
<img src="images/gallery5.JPEG" alt="A member holding her waterskiis">
</div>
<div class="galleryimg">
<img src="images/gallery6.JPG" alt="Two members posing on the back of a boat">
</div>
<div class="galleryimg">
<img src="images/gallery7.JPEG" alt="A member holding an award he earned">
</div>
<div class="galleryimg">
<img src="images/gallery8.JPEG" alt="A member waterskiing, attached to the back of a boat">
</div>
<div class="galleryimg">
<img src="images/gallery9.JPG" alt="A member waterskiing, making a large splash">
</div>
<div class="galleryimg">
<img src="images/gallery10.JPG" alt="The team holding of a UWEC waterski team sign">
</div>
<div class="galleryimg">
<img src="images/gallery11.JPG" alt="A member waterskiing">
</div>
<div class="galleryimg">
<img src="images/gallery12.JPG" alt="The team posing for a group photo">
</div>
</div>
</div>
<footer>
<div class="footer">
The Waterski and Wakeboard Team is a recognized Club Sports team at the University of Wisconsin - Eau Claire
</div>
</footer>
</body>
</html>