-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
66 lines (66 loc) · 2.76 KB
/
contacts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CONTACTS | FOOTY</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<a href="index.html" class="logo">FOOTY</a>
<nav class="nav main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</nav>
</header>
<main>
<div class="grid contacts-grid">
<div class="grid-el">
<h2>CONTACT US</h2>
<form action="#" method="post">
<div class="grid form-grid">
<label class="input-wrapper">Your name <input type="text" name="customer_name" placeholder="John" required></label>
<label class="input-wrapper">Your email <input type="email" name="customer_email" placeholder="[email protected]" required></label>
<label class="select-wrap">Subject
<select name="subject">
<option value="General" selected>General</option>
<option value="Returns & Delivery">Returns & Delivery</option>
<option value="Customer support">Customer support</option>
<option value="Advertising & Partnerships">Advertising & Partnerships</option>
</select>
</label>
<label class="large-cell">Message <br><textarea name="customer_email" rows="5" required></textarea></label>
</div>
<div class="button-block">
<button type="submit">Submit form</button>
<button type="reset">Reset form</button>
</div>
</form>
</div>
<div class="grid-el">
<h2>CONTACT DETAILS</h2>
<h3>POST</h3>
<p>
The Footy Club Limited <br>
Chase House<br>
Rainton Bridge<br>
DH4 5RA<br>
United Kingdom<br>
</p>
<h3>PHONE</h3>
<p><a href="tel:+4401913051078">+44 (0)191 305 1078</a></p>
<h3>EMAIL</h3>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
</main>
<script type="text/javascript" charset="utf-8" async src="https://api-maps.yandex.ru/services/constructor/1.0/js/?um=constructor%3A1a98a4477b2be7df9c12970094e9b62061b299bc911fcff6a503b9ef64ba83fa&width=100%25&height=400&lang=en_FR&scroll=true"></script>
<footer>
<p>©All rights reserved</p>
</footer>
</body>
</html>