-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
100 lines (90 loc) · 3.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<title>Wandrshop</title>
<!-- Bootstrap and styles -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,600,700&subset=latin,vietnamese' rel='stylesheet' type='text/css'>
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- header -->
<header class="header">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="col-md-12">
<a class="logo pull-left"><img src="img/logo.png" alt=""></a>
<div class="pull-right navigator">
<a href="#" class="btn btn-link">Home</a>
<a href="#" class="btn btn-transperant">Get the app</a>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- term -->
<section class="term">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="box">
<div class="title">
<h2 class="text-center">CONTACT US</h2>
</div>
<div class="content clearfix">
<div class="col-md-5">
<img src="img/icon-mail.png" alt="" class="img-responsive">
<br>
<p class="text-right">We’d love to know what you think about Wandrshop, please feel free to send us a message </p>
</div>
<div class="col-md-7">
<form class="clearfix form-transperant">
<div class="form-group">
<input type="text" class="form-control" id="exampleInputName1" placeholder="Your name">
</div>
<div class="form-group">
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Your email">
</div>
<div class="form-group">
<textarea class="form-control" rows="5" placeholder="Leave a message"></textarea>
</div>
<button type="submit" class="btn btn-purple pull-right">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer>
<div class="container">
<div class="row">
<div class="pull-right">
<a href="#" class="btn btn-link">About us</a>
<a href="#" class="btn btn-link">Contact us</a>
<a href="#" class="btn btn-link">Terms of use</a>
<a href="#" class="btn btn-link">Privacy Policy</a>
</div>
<p>© Copyright Wandrshop 2015. All rights reserved.</p>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>