-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
111 lines (109 loc) · 4.94 KB
/
contact.html
File metadata and controls
111 lines (109 loc) · 4.94 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
<!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>
<!--Hero image of balloons-->
<div class="contact-background">
<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" class="navbar">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>
<section>
<!--contact us header-->
<h2 id="title-2">Contact Us</h2>
<h3 id="contact-title">Want to get in touch? Please fill out the form below:</h3>
</section>
<!--contact us form structure-->
<div class="container">
<form method= "POST" action="https://formdump.codeinstitute.net/" target="_blank">
<div class="connect">
<div class="contact-box">
<input type="text" id="name" required>
<label for="name">Your Name*</label>
</div>
<div class="contact-box">
<input type="number" id="number" required>
<label for="number">Phone Number</label>
</div>
</div>
<div class="contact-box">
<input type="email" id="email" required>
<label for="email">Email Address*</label>
</div>
<div class="contact-box">
<textarea id="message" style="height:150px" required></textarea>
<label for="message">Leave us a Message*</label>
</div>
<button type="submit" aria-label="button to send the form"><span>Submit</span></button>
</form>
</div>
</div>
<!--find us section with google map embedded-->
<h4>Find Us:</h4>
<div class="contact-map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d577227.9213612373!2d-5.176347324546277!3d50.19062720207099!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x486b107cd55a1a75%3A0x616347ef951d07b4!2sTruro!5e0!3m2!1sen!2suk!4v1654338630603!5m2!1sen!2suk"
title="A embed Google map using iframe" width="1250" height="350" style="border:0;" allowfullscreen=""
loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</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>