-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
166 lines (163 loc) · 4.82 KB
/
index.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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!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" />
<title>Therese Hamahona Photography</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/e560bc8128.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="https://use.typekit.net/ypm2sts.css" />
</head>
<body>
<header>
<nav>
<h2 class="logo">Therese Hamahona</h2>
<ul class="navbar">
<li class="links"><a href="#">HOME</a></li>
<li class="links"><a href="#">ABOUT</a></li>
<li class="links"><a href="#">PORTFOLIO</a></li>
<li class="links"><a href="#">SERVICES</a></li>
<li class="links"><a href="#">ENQUIRE</a></li>
</ul>
<div class="social-media">
<a href="https://facebook.com"
><i class="fa-brands fa-facebook"></i
></a>
<a href="https://instagram.com"
><i class="fa-brands fa-instagram"></i
></a>
<a href="https://twitter.com"><i class="fa-brands fa-twitter"></i></a>
<a href="https://snapchat.com"
><i class="fa-brands fa-snapchat"></i
></a>
<a href="https://tiktok.com"><i class="fa-brands fa-tiktok"></i></a>
</div>
</nav>
</header>
<article class="about">
<div>
<img class="headshot" src="images/therese.jpeg" alt="therese" />
</div>
<div class="blurb">
<p>Hello and welcome to my site.</p>
<p>
I love photography and use it to fill my world with long lasting
memories.
</p>
<p>Please feel free to explore my photographs.</p>
<br />
<p>Kind regards,</p>
<p>Therese Hamahona</p>
</div>
</article>
<main>
<div>
<div>
<a href="images/image 3.jpg"
><img src="images/image 3.jpg" alt="image 3"
/></a>
</div>
<div>
<a href="images/image 5.jpg"
><img src="images/image 5.jpg" alt="image 5"
/></a>
</div>
<div>
<a href="images/image 8.jpg"
><img src="images/image 8.jpg" alt="image 8"
/></a>
</div>
</div>
<div>
<div>
<a href="images/image 10.jpg"
><img src="images/image 10.jpg" alt="image 10"
/></a>
</div>
<div>
<a href="images/image 6.jpg"
><img src="images/image 6.jpg" alt="image 6"
/></a>
</div>
<div>
<a href="images/image 2.jpg"
><img src="images/image 2.jpg" alt="image 2"
/></a>
</div>
</div>
<div>
<div>
<a href="images/image 11.jpg"
><img src="images/image 11.jpg" alt="image 11"
/></a>
</div>
<div>
<a href="images/image 13.jpg"
><img src="images/image 13.jpg" alt="image 13"
/></a>
</div>
<div>
<a href="images/image 9.jpg"
><img src="images/image 9.jpg" alt="image 9"
/></a>
</div>
</div>
</main>
<section>
<div id="left">
<div>
<i class="fa-solid fa-location-dot"></i>
<h2>ADDRESS</h2>
<p>
31 Cherrywood Drive<br />Tauranga<br />Bay Of Plenty<br />New
Zealand
</p>
</div>
<div>
<i class="fa-solid fa-mobile-screen"></i>
<h2>PHONE</h2>
<p>+64 2102366884</p>
</div>
<div>
<i class="fa-regular fa-envelope"></i>
<h2>E-MAIL</h2>
<p>[email protected]</p>
</div>
</div>
<div id="right">
<form action="mailto: [email protected]" method="post">
<h2>ENQUIRES</h2>
<p>
Would you like to discuss how I can help make your event or special
moment last a life time? Send me a message through the form below,
through the details to the side or via social media (links in the
navigation bar).
</p>
<div>
<input placeholder="Enter your name" required type="text" />
</div>
<div>
<input placeholder="Enter your email" required type="text" />
</div>
<div>
<textarea
placeholder="Enter your message here"
name="Message"
></textarea
><br />
</div>
<div>
<input type="submit" value="Send Now" />
</div>
</form>
</div>
</section>
<footer>
<p>© Therese Hamahona 2023. ALL RIGHTS RESERVED.</p>
</footer>
</body>
</html>