-
Notifications
You must be signed in to change notification settings - Fork 0
/
passion-gallery.html
58 lines (51 loc) · 2.52 KB
/
passion-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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Luke Bennett | Passion Gallery</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<!-- NAVIGATION BAR -->
<div class="main-nav">
<ul class="nav">
<li class="name">Luke Bennett</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="passion-gallery.html" class="selected">Passion Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!-- HEADER -->
<header class="passion">
<h1>Passion Gallery</h1>
<p class="passion-para-1">This is a small gallery of things that I have experienced in my life.</p>
<p class="passion-para-2">Photographs I have taken, memories I have shared.</p>
<blockquote>
"What Is Life But One Grand Adventure"
</blockquote>
</header>
<!-- Photo Gallery -->
<main class="passion-gallery">
<img src="images/Passion-Gallery/african-bird.jpg" alt="African-Bird">
<img src="images/Passion-Gallery/croyde-bay.jpg" alt="Croyde-Bay-Sunset">
<img src="images/Passion-Gallery/india-temple.jpg" alt="Indian-Palace">
<img src="images/Passion-Gallery/croyde-bay-rocks.jpg" alt="Rock-Climbing-Croyde-Bay">
<img src="images/Passion-Gallery/kangaroo-sunset.jpg" alt="Kangaroos-and-sunsets-australia">
<img src="images/Passion-Gallery/me-vietnam.jpg" alt="me-drinking-water-in-vietnam">
<img src="images/Passion-Gallery/pink-dolphins.jpg" alt="pink-dolphin-tour-hong-kong">
<img src="images/Passion-Gallery/thousand-buddhas.jpg" alt="10-thousand-buddha-temple-hong-kong">
<img src="images/Passion-Gallery/kilimanjaro-sunset.jpg" alt="sleep-time-sunset-kilimanjaro">
<img src="images/Passion-Gallery/zebra-time.jpg" alt="wary-zebras">
</main>
<!-- FOOTER AND SOCIAL LINKS -->
<footer>
<ul>
<li><a href="https://twitter.com/lukebennettuk" class="social twitter" target="_blank">Twitter</a></li>
<li><a href="https://github.com/LukeBennettUK" class="social github" target="_blank">Github</a></li>
</ul>
<p class="copyright"><small>© 2017, Luke Bennett</small></p>
</footer>
</body>
</html>