generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
172 lines (169 loc) · 7.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
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
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta data -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Webpage description -->
<meta name="description" content="View contact information and get in touch with Vikki Sponge Patisserie.">
<!-- Keywords used by search engines -->
<meta name="keywords" content="vikki sponge patisserie, patisserie, bakery, café, cakes">
<!-- Link to stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Page title for browser tab -->
<title>Contact Us | Vikki Sponge Patisserie</title>
</head>
<body>
<header>
<!-- Logo and cover text -->
<div id="logo">
<div class="logo-background">
<a href="index.html">
<h1>Vikki Sponge</h1>
<h2>Patisserie</h2>
</a>
<div class="cover-text">
<div class="decor"></div>
<p>Delicious fresh cakes handmade by our expert bakers</p>
</div>
</div>
</div>
<!-- Navigation menu -->
<nav id="navigation">
<ul>
<li class="nav-index">
<a href="index.html">Home</a>
</li>
<li class="nav-gallery">
<a href="gallery.html">Gallery</a>
</li>
<li class="nav-contact">
<a href="contact.html" class="active">Contact Us</a>
</li>
<li class="nav-find">
<a href="find.html">Find Us</a>
</li>
</ul>
</nav>
<!-- Hero image -->
<div id="hero">
<div id="contact-hero-image"></div>
</div>
</header>
<!-- Contact information -->
<section id="contact">
<div class="container">
<div class="contact-text">
<h3 class="heading">
Contact Us
</h3>
<p>
If you require a cake for your celebration or event you can contact us via telephone or email, we'd
love to chat about your requirements.
</p>
</div>
<div class="row">
<div class="col-50">
<div class="contact-details border telephone">
<p><i class="fas fa-phone-square-alt" title="Call us on"></i>01234 567890</p>
</div>
</div>
<div class="col-50">
<div class="contact-details border">
<p><i class="fas fa-envelope-square" title="Email us at"></i>[email protected]
</p>
</div>
</div>
</div>
<div class="contact-text">
<h3 class="heading">
Or Get In Touch Using Our Enquiry Form
</h3>
<p>
Please complete the following form, providing as much detail as possible and a member of our team
will be in touch to discuss your requirements.
</p>
</div>
<!-- Contact form -->
<form action="contact-thank-you.html" method="GET" class="contact-form">
<div class="row flex-container">
<div class="col-50">
<label for="name-contact">Name:</label>
<input type="text" id="name-contact" name="name" placeholder="Enter name"
class="contact-input border" required>
<label for="email-contact">Email Address:</label>
<input type="email" id="email-contact" name="email_address" placeholder="Enter email address"
class="contact-input border" required>
<label for="phone">Telephone Number:</label>
<input type="tel" id="phone" name="phone_number" placeholder="00000-000000"
class="contact-input border" pattern="[0-9]{5}-[0-9]{6}">
<label for="event">Type of Event:</label>
<select name="event" id="event" class="contact-input border">
<option value="">Select</option>
<option value="anniversary">Anniversary</option>
<option value="baby-shower">Baby Shower</option>
<option value="birthday">Birthday</option>
<option value="christening">Christening</option>
<option value="engagement">Engagement</option>
<option value="wedding">Wedding</option>
</select>
<label for="date">Date Required:</label>
<input type="date" id="date" name="date_required" class="contact-input border">
</div>
<div class="col-50">
<label for="message">Your Message:</label>
<textarea id="message" name="message" placeholder="Enter your message here"
class="contact-input border" required></textarea>
<input type="submit" value="Submit" class="contact-button corners">
</div>
</div>
</form>
</div>
</section>
<footer>
<!-- Newsletter sign up form -->
<section id="newsletter">
<div class="container">
<form action="newsletter-thank-you.html" method="GET" class="sign-up-form">
<div class="decor"></div>
<div class="nl-header">
<h3>Sign up for our Newsletter</h3>
<p>to recieve updates and special offers</p>
</div>
<input type="text" id="name-newsletter" name="name" placeholder="Enter name"
aria-label="Enter your name here" class="nl-input border" required>
<input type="email" id="email-newsletter" name="email_address" placeholder="Enter email address"
aria-label="Enter your email address here" class="nl-input border" required>
<div class="container">
<input type="submit" value="Sign Up" class="sign-up-button corners">
</div>
<div class="decor invert"></div>
</form>
</div>
</section>
<!-- Social media links -->
<div id="social-media">
<ul class="social-media-links">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i
class="fab fa-facebook-square"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"><i
class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"><i
class="fab fa-instagram-square"></i></a>
</li>
</ul>
</div>
</footer>
<!-- Font Awesome embed code -->
<script src="https://kit.fontawesome.com/8e292ce701.js" crossorigin="anonymous"></script>
</body>
</html>