-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
156 lines (145 loc) · 6.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lora:400,400i&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/7abf5fb391.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.1/css/all.css">
<link rel="stylesheet" href="./styles/style.css">
<title>Delicios Contact</title>
</head>
<body>
<header class="header-contact">
<div>
<h1>delicious</h1>
<nav>
<label for="hamburger">☰</label>
<input type="checkbox" class="hamburger" id="hamburger" />
<ul>
<!-- commented put unused links -->
<li><a href="index.html">Home</a></li>
<!-- <li><a href="#">About</a></li> -->
<!-- <li><a href="#">Recipes</a></li> -->
<!-- <li><a href="#">Nutrition</a></li> -->
<li><a href="blog.html">Blog</a></li>
<!-- <li><a href="">Shop</a></li> -->
<li><a class="active" href="contact.html">Contact</a></li>
<li><a href="#"><i class="fas fa-shopping-bag"></i></a></li>
<li><a href="#"><i class="fas fa-search"></i></a></li>
<li class="header-circle"><i class="fas fa-circle"></i>
<p>2</p>
</li>
</ul>
</nav>
</div>
</header>
<main>
<section class="contact">
<div class="wrapper">
<div class="contact-form">
<h3>DROP US A LINE</h3>
<form action="">
<fieldset>
<legend class="visually-hidden"></legend>
<label for="name" class="visually-hidden"></label>
<input type="text" name="name" class="name" id="name" placeholder="Your Name">
<label for="email" class="visually-hidden"></label>
<input type="email" name="email" class="email" id="email" placeholder="Your Email">
<label for="subject" class="visually-hidden"></label>
<input type="text" name="subject" class="subject" id="subject" placeholder="Subject">
<label for="message" class="visually-hidden"></label>
<textarea name="message" class="message" id="message" maxlength="1500" rows="15"
placeholder="Message"></textarea>
</fieldset>
<button type="submit"><a href="www.noonereallycares.com">SEND MESSAGE <span><i
class="fas fa-long-arrow-alt-right"></i></span></a></button>
</form>
</div>
<div class="contact-details">
<div class="contact-details-info">
<h3>CONTACT DETAILS</h3>
<p>Beetroot water spinach okra water chest- nut ricebean pea catsear courgette summer purslane.
Water
spinach arugula pea
tatsoi aubergine spring onion bush tomato kale.</p>
</div>
<div class="contact-working-hours">
<h4>WORKING HOURS</h4>
<p><span>MON - FRI:</span> 08.00am - 05:30pm</p>
<p>Not working on Saturday and Sunday!</p>
</div>
<div class="contact-info">
<h4>CONTACT INFO</h4>
<p>A delicious restaurant <br>
Toronto, Ontario</p>
<p>[email protected]</p>
<p>+1 234 567 8910</p>
</div>
</div>
</div>
</section>
<div class="banner"></div>
</main>
<footer>
<div class="wrapper">
<div class="footer-info">
<div>
<h2>delicious</h2>
<p>Soko radicchio bunya nuts gram dulse silver beet parsnip napa cabbage lotus root sea lettuce
brussels
sprout cabbage.</p>
<p>A delicious restaurant <br>
Toronto, Ontario</p>
<p>[email protected]</p>
<p class="no-border">+1 234 567 8910</p>
</div>
<div>
<h3>recent posts</h3>
<a href="#">
<p>Beetroot water spinach okra water</p>
</a>
<a href="#">
<p>Chestnut ricebean pea catsear courgette</p>
</a>
<a href="#">
<p>Summer purslane water spinach arugula pea</p>
</a>
<a href="#">
<p>Tatsoi aubergine spring onion bush</p>
</a>
<a href="#">
<p>Tomato kale radicchio turnip chicory</p>
</a>
<a href="#">
<p class="no-border"> Salsify pea sprouts fava bean</p>
</a>
</div>
<div>
<h3>subscribe now</h3>
<p class="no-border">Get all of our new recepies immediately in your inbox!</p>
<form action="">
<label for="email">Enter your email</label>
<input type="email" id="email" name="email" placeholder="Enter your email">
<button type="submit"><a href="www.noonegonnacheckit.com"><i
class="fas fa-long-arrow-alt-right"></i></a></button>
</form>
<nav class="social-links">
<ul>
<li><a href="www.facebook.com"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="www.twitter.com"><i class="fab fa-twitter"></i></a></li>
<li><a href="www.instagram.com"><i class="fab fa-instagram"></i></a></li>
</ul>
</nav>
</div>
</div>
</div>
<div class="copyright">
<div class="wrapper">
<p>Copyright © 2015 by <span><a href="https://polar.me">POLAR</a></span>. All rights reserved</p>
</div>
</div>
</footer>
</body>
</html>