generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
73 lines (67 loc) · 3.36 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
70
71
72
73
<!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="Local café for those who are visiting Trim, Ireland">
<meta name="keywords" content="café, coffee, brunch, trim, braveheart">
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<script src="https://kit.fontawesome.com/a2cdc22893.js" crossorigin="anonymous"></script>
<title>The Olive Tree - Home</title>
</head>
<body>
<header>
<a href="index.html"><div id="logo">The Olive Tree</div></a>
<nav>
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
</header>
<!-- Contact Section -->
<section id="contactsection">
<h1>
Contact
</h1>
<div id="flex-contact">
<div id="formside">
<form action="/formsubmitted.html">
<input type="text" id="name" name="name" placeholder="Name" required><br>
<input type="email" id="email" name="email" placeholder="Email" required><br>
<select id="inquiry" name="inquiry" required>
<option value="reservation" default>- Inquiry -</option>
<option value="reservation">Reservation</option>
<option value="suggestion">Suggestion</option>
<option value="complaint">Complaint</option>
<option value="other">Other</option>
</select><br>
<textarea name="description" id="" cols="60" rows="10" placeholder="Description" required></textarea><br>
<input type="submit" class="button" value="Submit">
<input type="reset" class="button">
</form>
</div>
<div id="openingtimes">
<p>
Monday to Saturday: 9:00 - 17:00<br>
Sunday: Closed
</p>
<p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d840.8662862350583!2d-6.7917930944589235!3d53.55597375642578!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x48675e1092628dab%3A0x39b37a26f997bd1f!2sThe%20Olive%20Tree!5e0!3m2!1sen!2sie!4v1682107808947!5m2!1sen!2sie" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</p>
</div>
</div>
</section>
<!-- Footer section -->
<footer>
<div id="footercontent">
<span>All rights reserved | </span>
<span><a href="https://www.facebook.com" aria-label="Access Facebook" target="_blank"><i class="fa-brands fa-square-facebook" style="color: #ffffff;"></i></a></span>
<span><a href="https://www.instagram.com" aria-label="Access Instagram" target="_blank"><i class="fa-brands fa-square-instagram" style="color: #ffffff;"></i></a></span>
</div>
</footer>
</body>
</html>