-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
95 lines (83 loc) · 3.8 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
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Urban Rescue Therapy | Urban Recruit</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="main-header">
<div class="logo">
<a href="index.html"><img src="img/logo-black.png" alt="Urban Rescue Therapy"></a>
</div>
<a id="hamburger" class="navicon" href="#">
<span class="hamburger">
<span class="layer-top"></span>
<span class="layer-middle"></span>
<span class="layer-bottom"></span>
</span>
</a>
<nav class="main-nav" role="navigation">
<ul class="main-menu">
<li><a href="about.html">about</a></li>
<li><a href="treatments.html">treatments</a></li>
<li><a href="prices.html">prices</a></li>
<li><a href="contact.html" class="selected">contact</a></li>
<li><a href="urban-recruit.html">urban recruit</a></li>
</ul>
</nav>
</header>
<div class="header-fix"></div>
<div class="banner" style="background-image: url(img/getintouch.jpg);"></div>
<main class="content">
<h1>Contact us</h1>
<div class="flex-wrapper">
<div class="column">
<form>
<label for="name">Name</label>
<input type="text">
<label for="email">Email</label>
<input type="email">
<label for="phone">Phone</label>
<input type="text">
<label for="message">Message</label>
<textarea name="message"></textarea>
<input type="submit" value="Send">
</form>
</div>
<div class="column">
<p>Appointments:</p>
<p>Hours - 10:AM until midnight (Later appointment possible with notice)</p>
<p>T: +44 (0) 79 55 08 25 42</p>
<p>E: [email protected]</p>
<p>Cancellations:</p>
<p>You can cancel anytime charge free within 24 hours of treatment.</p>
<p>Privacy Policy:</p>
<p>Any Information we gather will be kept in the strictest confidence and will not be passed on to any 3rd parties, and will be used soley in We are committed to protecting your privacy and we will not collect any personal information about you unless you provide it voluntarily. We will keep any personal information you communicate to us in accordance with the Data Protection Act 1998, information of which can be found at: www.legislation.gov.uk </p>
</div>
</div>
</main>
<footer class="main-footer">
<div class="footer-container footer-logo">
<a href="#"><img src="img/logo-white.png" alt="Urban Rescue Therapy"></a>
</div>
<div class="footer-container footer-social">
<p>follow us on</p>
<ul class="social-nav">
<li><a href="www.facebook.com"></a></li>
<li><a href="www.google.com"></a></li>
<li><a href="www.twitter.com"></a></li>
</ul>
</div>
<div class="footer-container footer-copyright">
<p>2016 Urban Rescue Therapy</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="js/site.js"></script>
</body>
</html>