-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
220 lines (180 loc) · 6.34 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>WEB222 Store</title>
<link rel="stylesheet" href="style.css" />
<script src="contactscript.js"></script>
<link rel="stylesheet" href="responsive.css" />
</head>
<body>
<header>
<div id="logo">
<img src="images/logo.png" alt="logo" id="logo-store" />
<img src="images/name-store.png" alt="name-store" id="name-store" />
</div>
<span class="search-bar">
<input type="text" placeholder="Search..." />
<button><ion-icon name="search-outline"></ion-icon></button>
</span>
</header>
<section>
<!-- Contact -->
<div class="container">
<div id="contact">
<h2><b>Contact Us</b></h2>
<br />
<p>Address: 110 Front Street, North York, Ontario</p>
<p>Postal Code: M2H 2P8</p>
<p>Phone: 416-824-2012</p>
<br />
<h2><b>Or leave your information below</b></h2>
<br>
<form action="https://httpbin.org/post" method="POST">
<label>
First Name:
<p>
<input type="text" name="fname" required />
</p>
</label>
<label>
Last Name:
<p>
<input type="text" name="lname" required />
</p>
</label>
<label>
Email:
<p>
<input type="email" name="email" placeholder="abc123@gmail.com"/>
</p>
</label>
<label>
Address:
<p>
<input type="text" name="address" />
</p>
</label>
<label>
City:
<p>
<input type="text" list="subjects1" name="city" />
<datalist id="subjects1">
<option value="Ontario"> </option>
<option value="Alberta"> </option>
<option value="Quebec"> </option>
<option value="others"> </option>
</datalist>
</p>
</label>
<label>
Postal Code:
<p>
<input type="text" name="postal" pattern="^(\d{5}(-\d{4})?|[A-Z]\d[A-Z] ?\d[A-Z]\d)$" placeholder="Ex: M2H 3G7"/>
</p>
</label>
<!-- Radio option here -->
<label>
Message:
<p>
<textarea name="message" placeholder="Give us feedback if you need..."></textarea>
</p>
</label>
<input type="hidden" value="Hung Nguyen" /> <br>
<h2>This is about:</h2>
<input type="radio" id="question" name="problem" class="problem">
<label for="question" class="problem" >Question </label><br>
<input type="radio" id="comment" name="problem" class="problem">
<label for="comment" class="problem">Comment</label><br>
<input type="radio" id="orderproblem" name="problem" class="problem">
<label for="orderproblem" class="problem">Order Problem </label><br>
<div class="orno" >
Order Number: <br>
<input type="text" name="orderno" >
</div>
<input type="submit" value="send" class="send-button"/>
</form>
</div>
<div id="contact-img">
<img src="images/burst-kUqqaRjJuw0-unsplash.jpg" alt="contact" />
<div class="map">
<h2>Map</h2>
<iframe
src="https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d2965.0824050173574!2d-93.63905729999999!3d41.998507000000004!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1sWebFilings%2C+University+Boulevard%2C+Ames%2C+IA!5e0!3m2!1sen!2sus!4v1390839289319"
></iframe>
</div>
<div class="goHome"><a href="index.html">Go back to home page</a></div>
</div>
</div>
</section>
<footer>
<div class="footer-1">
<h3>Customer Care</h3>
<ul>
<li><a href="#">Help</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">About us</a></li>
</ul>
</div>
<div class="footer-1">
<h3>More Way To Shop</h3>
<ul>
<li><a href="#">Help</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">About us</a></li>
</ul>
</div>
<div class="footer-1">
<h3>Our Service</h3>
<ul>
<li><a href="#">Help</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">About us</a></li>
</ul>
</div>
<div class="footer-1">
<h3>Corporate Info</h3>
<ul>
<li><a href="#">Help</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">About us</a></li>
</ul>
</div>
<div id="footer-icon">
<a href="#"><ion-icon name="logo-instagram"></ion-icon></a>
<a href="#"><ion-icon name="logo-facebook"></ion-icon></a>
<a href="#"><ion-icon name="logo-twitter"></ion-icon></a>
<a href="#"><ion-icon name="logo-skype"></ion-icon></a>
</div>
<form action="https://formspree.io/mrgydlqd" method="POST">
<label>
Your Name:
<p>
<input type="text" name="name" required />
</p>
</label>
<label>
Email:
<p>
<input type="email" name="email" />
</p>
</label>
<label>
<p>
<input type="submit" value="subscribe" class="subscribe" />
</p>
</label>
</form>
</footer>
<div id="copyright">
<p>© <i>2020, Squidy Speedy Allright Reserved.</i></p>
</div>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
</body>
</html>