-
Notifications
You must be signed in to change notification settings - Fork 7
/
gallery.html
61 lines (51 loc) · 2.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Love Running</title>
<!-- Stylesheet -->
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<a href="index.html">
<h2 ID="logo">Love Running</h2>
</a>
<nav>
<ul id="menu">
<li>
<a href="signup.html">Sign Up</a>
</li>
<li>
<a class="active" href="gallery.html">Gallery</a>
</li>
<li>
<a href="index.html">Home</a>
</li>
</ul>
</nav>
</header>
<section id="photo">
<img src="assets/images/athletes.jpg" alt="Two athletes running together">
<img src="assets/images/girls.jpg" alt="Three girls at charity paint running festival">
<img src="assets/images/runner3.jpg" alt="Solo male runner jogging on beach">
<img src="assets/images/man.jpg" alt="Man at charity paint running festival">
<img src="assets/images/runner1.jpg" alt="Solo female runner jogging through phoenix park">
<img src="assets/images/runner2.jpg" alt="Runners competing in marathon">
<img src="assets/images/runner4.jpg" alt="Solo female runner jogging on beach">
<img src="assets/images/running_gang.jpg" alt="Large group of runners taking part in a marathon on a rainy day">
<img src="assets/images/mud-run.jpg" alt="Two women runners taking a muddy selfie after the Mud Runners championship">
</section>
<footer>
<ul class="social-networks">
<li><a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook"></i></a></li>
<li><a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="https://www.youtube.com" target="_blank"><i class="fab fa-youtube-square"></i></a></li>
<li><a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</footer>
<!-- Font awesome script -->
<script src="https://kit.fontawesome.com/b83175b9a4.js" crossorigin="anonymous"></script>
</body>
</html>