-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
103 lines (96 loc) · 3.23 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
<!DOCTYPE HTML>
<!--
Spatial by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<head>
<title>Contact us: Quiet Corner</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
</noscript>
</head>
<body>
<!-- Header -->
<header id="header">
<h1><strong><a href="index.html">Quiet Corner</a></strong> be cozy.</h1>
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">contact us</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<section id="main" class="wrapper">
<div class="container">
<header class="major special">
<h2>Contact us</h2>
<p>interested in joining the quiet corner network?</p>
</header>
<section>
<form method="post" action="#">
<div class="row uniform 50%">
<div class="6u 12u$(xsmall)">
<input type="text" name="name" id="name" value="" placeholder="Name" />
</div>
<div class="6u$ 12u$(xsmall)">
<input type="email" name="email" id="email" value="" placeholder="Email" />
</div>
<div class="12u$">
<div class="select-wrapper">
<select name="category" id="category">
<option value="">Your use</option>
<option value="1">Hotel</option>
<option value="1">Service provider</option>
<option value="1">User</option>
</select>
</div>
</div>
<div class="6u 12u$(small)">
<input type="checkbox" id="copy" name="copy">
<label for="copy">Email me a copy of this message</label>
</div>
<div class="6u$ 12u$(small)">
<input type="checkbox" id="human" name="human" checked>
<label for="human">I am a human and not a robot</label>
</div>
<div class="12u$">
<textarea name="message" id="message" placeholder="Enter your message" rows="6"></textarea>
</div>
<div class="12u$">
<input type="submit" value="Send Message" class="special" />
</div>
</div>
</form>
</section>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<ul class="icons">
<li><a href="#" class="icon fa-facebook"></a></li>
<li><a href="#" class="icon fa-twitter"></a></li>
<li><a href="#" class="icon fa-instagram"></a></li>
</ul>
<ul class="copyright">
<li>© Untitled</li>
<li>Design: <a href="http://templated.co">TEMPLATED</a></li>
<li>Images: <a href="http://unsplash.com">Unsplash</a></li>
</ul>
</div>
</footer>
</body>
</html>