generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
56 lines (48 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Love running</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous"/>
<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"> Contact</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="http://codeinstitute.s3.amazonaws.com/FundamentalsProjects/HTML-CSS/girls.jpg">
<img src="http://codeinstitute.s3.amazonaws.com/FundamentalsProjects/HTML-CSS/man.jpg">
<img src="http://codeinstitute.s3.amazonaws.com/FundamentalsProjects/HTML-CSS/runner1.jpg">
<img src="http://codeinstitute.s3.amazonaws.com/FundamentalsProjects/HTML-CSS/runner2.jpg">
<img src="http://codeinstitute.s3.amazonaws.com/FundamentalsProjects/HTML-CSS/athletes.jpg">
<img src="http://codeinstitute.s3.amazonaws.com/FundamentalsProjects/HTML-CSS/runner3.jpg">
<img src="http://codeinstitute.s3.amazonaws.com/FundamentalsProjects/HTML-CSS/running_gang.jpg">
<img src="http://codeinstitute.s3.amazonaws.com/FundamentalsProjects/HTML-CSS/athletes.jpg">
</section>
<footer>
<ul class="social-networks">
<li> <a href="https://www.facebook.com/" target="_bank"><i class="fab fa-facebook-f"></i> </li>
<li> <a href="https://twitter.com/?lang=en-gb" target="_bank"><i class="fab fa-twitter"></i> </li>
<li> <a href="https://www.youtube.com" target="_bank"> <i class="fab fa-youtube"></i> </li>
<li> <a href="https://www.instagram.com/" target="_bank"> <i class="fab fa-instagram"></i> </li>
</ul>
</footer>
</body>
</html>