-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (102 loc) · 4.24 KB
/
index.html
File metadata and controls
104 lines (102 loc) · 4.24 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
<!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>
<section>
<div id="main-image">
<!--hot air balloon festival hero image-->
<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" class="navbar">Home</a>
</li>
</ul>
</nav>
</header>
<!--Landscape Photography title-->
<h2 id="title-1">Landscape Photography</h2>
</div>
</section>
<!--quote section-->
<section id="quotebox">
<div class="quote">
<h3>“The earth is art, the photographer is only a witness.”</h3>
<p>-Yann Arthus-Bertrand</p>
</div>
</section>
<!--click section to gallery page-->
<section>
<div class="click-section">
<a href="gallery.html" aria-label="Gallery">
<div class="card mountian-card">
<h4 class="gallery-card">PEAKS<i class="fa-solid fa-mountain"></i></h4>
</div>
</a>
<a href="gallery.html" aria-label="Gallery">
<div class=" card coastal-card">
<h4 class="gallery-card">COAST<i class="fa-solid fa-water"></i></h4>
</div>
</a>
<a href="gallery.html" aria-label="Gallery">
<div class="card tree-card">
<h4 class="gallery-card">TREES<i class="fa-solid fa-tree"></i></h4>
</div>
</a>
</div>
</section>
<!--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>
</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>