-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
69 lines (69 loc) · 3.56 KB
/
contact.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
<!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="keywords" content="contact, personal, chef, Andy">
<meta name="description" content="Contact chef Andy today for a free, no-obligation consultation.">
<title>Contact | Chef Andy</title>
<link rel="icon" href="/images/icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&family=Roboto+Condensed&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/contact.css">
</head>
<body>
<nav>
<h1><a href="./index.html">Chef Andy</a></h1>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./services.html">Services</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<header>
<h2>Contact the Chef</h2>
<p>Let's talk.</p>
</header>
<section class="center margin-bottom-2">
<h2 class="divider">Get In Touch</h2>
<p>Please use the form below to contact Chef Andy.</p>
</section>
<div class="flex-container"><!-- Flex container -->
<div class="form-container flex-item"><!-- Flex item -->
<form action="#">
<div>
<label for="firstname">First Name<sup>*</sup></label><br>
<input type="text" id="firstname" name="firstname" placeholder="Enter your first name" required>
</div>
<br>
<div>
<label for="lastname">Last Name<sup>*</sup></label><br>
<input type="text" id="lastname" name="lastname" placeholder="Enter your last name" required>
</div>
<br>
<div>
<label for="email">Email<sup>*</sup></label><br>
<input type="email" id="email" name="email" placeholder="[email protected]" required>
</div>
<br>
<div>
<label for="message">Message<sup>*</sup></label><br>
<textarea name="message" id="message" placeholder="Enter your message..." required></textarea>
</div>
<p>All <sup>*</sup> fields are required.</p>
<button class="send-button" type="submit">Send</button>
<button class="reset-button" type="reset">Reset</button>
</form>
</div><!-- END OF .form-container -->
<div class="flex-item-map"><!-- Flex item -->
<iframe class="map" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d11549.077267285733!2d-79.3871007!3d43.6425648!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x5645fbf28dda7286!2s360%20The%20Restaurant%20at%20the%20CN%20Tower!5e0!3m2!1sen!2sca!4v1672536896038!5m2!1sen!2sca" width="600" height="450" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div> <!-- END OF .flex-container-->
<a class="go-to-top" href="#top">↑</a>
<footer><small>©2023 Chef Andy</small></footer>
</body>
</html>