-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgallery.html
More file actions
141 lines (137 loc) · 5.55 KB
/
gallery.html
File metadata and controls
141 lines (137 loc) · 5.55 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Through the Lens Photography showcase by Chris Townsend">
<meta name="keywords" content="through the lens, photography, landscape photography, Chris Townsends photography">
<link rel="stylesheet" href="assets/css/style.css">
<title>Through the Lens</title>
</head>
<body>
<header>
<!--Through the Lens title-->
<a href="index.html" aria-label="A clickable title that takes you back to the homepage">
<h1 id="title">Through the Lens</h1>
</a>
<!--nav section of header-->
<nav>
<ul id="menu">
<li>
<a href="contact.html" aria-label="Link to contact us page">Contact</a>
</li>
<li>
<a href="about.html" aria-label="Link to about us page">About</a>
</li>
<li>
<a href="gallery.html" aria-label="Link to gallery page">Gallery</a>
</li>
<li>
<a href="index.html" aria-label="Link to homepage">Home</a>
</li>
</ul>
</nav>
</header>
<!--gallery title-->
<h1 id="title-2">Gallery</h1>
<!--gallery images-->
<div class="gallery-contain">
<div class="gallery-page w-6 h-4">
<div class="gallery-item">
<div class="image">
<img src="assets/images/an-autumn-day-germany.webp"
alt="Autumn leaves fallen off trees in Bad Pyrmont, Germany">
</div>
</div>
</div>
<div class="gallery-page w-2 h-6">
<div class="gallery-item">
<div class="image">
<img src="assets/images/yoho-national-park-canada.webp"
alt="A river flowing through trees with a coned mountian in the background, Yoho National Park, Canada">
</div>
</div>
</div>
<div class="gallery-page h-5 w-3">
<div class="gallery-item">
<div class="image">
<img src="assets/images/niagra-falls-canada.webp"
alt="A slow time-frame image of Niagra Falls, Canada">
</div>
</div>
</div>
<div class="gallery-page h-2 w-4">
<div class="gallery-item">
<div class="image">
<img src="assets/images/pink-landscape-wanaka-new-zealand.webp"
alt="Pink sunset island in Wanaka, New Zealand">
</div>
</div>
</div>
<div class="gallery-page h-6 w-5">
<div class="gallery-item">
<div class="image">
<img src="assets/images/rock-formation-northern-new-mexico.webp"
alt="A rock formation taken at dusk in the Badlands of Northern New Mexico">
</div>
</div>
</div>
<div class="gallery-page w-4 h-4">
<div class="gallery-item">
<div class="image">
<img src="assets/images/page-az-usa.webp" alt="Cloudy skies above Lake Powell, Arizona, USA">
</div>
</div>
</div>
<div class="gallery-page h-2 w-3">
<div class="gallery-item">
<div class="image">
<img src="assets/images/balloons.webp"
alt="A blue sky filled with hot air ballons, Barnstorf, Germany">
</div>
</div>
</div>
<div class="gallery-page h-6 w-2">
<div class="gallery-item">
<div class="image">
<img src="assets/images/reflection-in-lake-moraine-canada.webp"
alt="Reflection of a mountian in lake Moraine, Canada">
</div>
</div>
</div>
</div>
<!--footer-->
<footer>
<!--social links-->
<div class="social-icons">
<ul>
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Vist our Facebook page (opens in a new tab)"
class="fa-brands fa-facebook-square"></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener"
aria-label="Vist our Instagram page (opens in a new tab)"
class="fa-brands fa-instagram-square"></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener"
aria-label="Vist our Twitter page (opens in a new tab)" class="fa-brands fa-twitter-square"></a>
</li>
<li>
<a href="https://github.com/chris-townsend" target="_blank" rel="noopener"
aria-label="Vist my Github page (opens in a new tab)" class="fa-brands fa-github-square"></a>
</li>
</ul>
</div>
<!--copyright info-->
<div class="footer-bottom">
© Through the Lens | Designed by Chris Townsend
</div>
</footer>
<!--font awesome script-->
<script src="https://kit.fontawesome.com/9932e8fab5.js" crossorigin="anonymous"></script>
</body>
</html>