-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
89 lines (81 loc) · 3.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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="Cafe Sebastian | An intimate and elegant cafe for coffee and classical music in the heart of Exeter">
<meta name="keywords" content="classical music, concerts, cafe, coffee, Exeter, cafe sebastian">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<title>Cafe Sebastian</title>
</head>
<body>
<header>
<a href="index.html">
<h1 id="logo">Cafe Sebastian</h1>
</a>
<img id="signature" src="assets/images/signature-new.svg" alt="JS Bach's Signature">
<nav>
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="whats-on.html">What's On</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
</header>
<section class="ask-us-container">
<!-- <div>Ask Us About Music</div> -->
<div class="ask-us-right">
<div class="ask-us-form">
<h3>Contact Us</h3>
<form>
<label for="name">Name</label><br>
<input type="text" id="name" name="name" required><br>
<label for="email">Email</label><br>
<input type="email" id="email" name="email" required><br>
<label for="message">Message</label><br>
<textarea id="message" name="message" rows="10" required></textarea>
<input class="submit-button" type="submit" value="Contact Us">
</form>
</div>
</div>
</section>
<section class="find-us">
<h2>Find Us</h2>
<div><iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2525.9827236506535!2d-3.5379353842588204!3d50.72025967951339!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x486da5dc3eb2506d%3A0xd46f111169b43200!2sThe%20Press%20House!5e0!3m2!1sen!2suk!4v1660590084662!5m2!1sen!2suk"
allow="fullscreen;" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe></div>
</section>
<footer>
<div id="footer-left">
<h3>Opening Times</h3>
<p><span>Monday to Friday</span><span>10:00-18:00</span></p>
<p><span>Saturday</span><span> 10:00-22:00</span></p>
<p><span>Sunday</span><span>12:00-18:00</span></p>
</div>
<div id="footer-center">
<img id="signature-footer" src="assets/images/signature-new.svg" alt="JS Bach's Signature">
</div>
<div id="footer-right">
<a href="https://www.facebook.com" target="_blank"
aria-label="Visit our Facebook page (opens in a new tab)">
<i class="fa-brands fa-square-facebook"></i>
</a>
<a href="https://www.twitter.com" target="_blank" aria-label="Visit our Twitter page (opens in a new tab)">
<i class="fa-brands fa-square-twitter"></i>
</a>
<a href="https://www.instagram.com" target="_blank"
aria-label="Visit our Instagram page (opens in a new tab)">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a href="https://www.youtube.com" target="_blank" aria-label="Visit our YouTube page (opens in a new tab)">
<i class="fa-brands fa-square-youtube"></i>
</a>
</div>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/32eb0f11a8.js" crossorigin="anonymous"></script>
</body>
</html>