-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
42 lines (42 loc) · 2 KB
/
gallery.html
File metadata and controls
42 lines (42 loc) · 2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<script src="https://kit.fontawesome.com/4ca5255d6d.js" crossorigin="anonymous"></script>
<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="index.html">Home</a></li>
<li><a href="gallery.html" class='active'>Gallery</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</header>
<section id='photo-gallery'>
<img src="assets/img/running_gang.jpg" alt="athletes competing in a road race in the rain">
<img src="assets/img/man.jpg" alt="smiling man with paint on his face and clothes">
<img src="assets/img/runner1.jpg" alt="female athlete running on a country road">
<img src="assets/img/runner2.jpg" alt="female athlete smiling while competing in a race">
<img src="assets/img/runner3.jpg" alt="male triathlete running out of the sea">
<img src="assets/img/athletes.jpg" alt="two female athletes running">
<img src="assets/img/runner4.jpg" alt="group of girls running while wearing ’Colour Run’ t-shirts">
<img src="assets/img/girls.jpg" alt="three smiling girls with paint on their faces and clothes">
<img src="assets/img/shoes.jpg" alt="discarded running shoes on a wooden floor">
<img src="assets/img/joggers.jpg" alt="silhouettes of three urban joggers">
</section>
<footer>
<ul>
<li><a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.youtube.com" target="_blank"><i class="fab fa-youtube"></i></a></li>
<li><a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</footer>
</body>
</html>