-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
165 lines (139 loc) · 4.94 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
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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="animate.min.css">
<title>Contacts</title>
</head>
<body class="contbody">
<div class="navbar">
<ul>
<li><a href="index.html"> <i class="fa fa-home"></i> HOME</a></li>
<li><a href="shop.html"> <i class="fa fa-shopping-cart"></i> SHOP</a></li>
<li><a href="checkout.html"> <i class="fa fa-check"></i> CHECKOUT</a></li>
<li><a href="#"> <i class="fa fa-gift"></i> PROMOTIONS</a></li>
<li><a href="contacts.html"> <i class="fa fa-phone"></i> CONTACT US</a></li>
<li><a href="about.html"><i class="fa fa-users"></i> ABOUT US</a></li>
</ul>
</div>
<hr>
<div class="contact-one">
<img src="images/bg_6.jpg" alt="bg_6" width="100%" height="450px">
<div class="centered">
<h2>CONTACT US</h2>
<a href="index.html">HOME</a>
<a href="contacts.html">CONTACTS</a>
</div>
</div>
<div>
<table class="location">
<tr>
<td class="ress">
<p> PHYSICAL ADRESS:<br><br> TURNSTONE ARCADE,<br> CHALBI DRIVE C-809, <br>
LAVINGTON<br>
NAIROBI,KENYA</p>
</td>
<td class="ress">
<b> PHONE:</b> +254 741-862008
</td>
<td class="ress">
<b>EMAIL ADDRESS:</b><a href="#mail"> shop.carribeanshoes@gmail.com</a>
</td>
<td class="ress">
<b> WEBSITE:</b> <a href="#web"> www.carribeanshoes.co.ke</a>
</td>
</tr>
</table>
</div>
<div class="contact-form">
<h2>HOW CAN WE HELP YOU.</h2>
<form action="#addphp">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Enter Firstname...">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="EMAIL">Email</label>
<input type="email" id="email" name="email" placeholder="Your email..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="kenya">Kenya</option>
<option value="nigeria">Nigeria</option>
<option value="uganda">Uganda</option>
<option value="tanzania">Tanzania</option>
<option value="rwanda">Rwanda</option>
<option value="ethiopia">Ethiopia</option>
<option value="sudan">Sudan</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
<hr>
<footer>
<div class="footer-section">
<div class="help-footer">
<ul>
<li>
<h5>LET US HELP YOU</h5>
<h6><a href="contacts.html">> Help Center</a> </h6>
<h6><a href="contacts.html">> Contact Us</a></h6>
<h6><a href="#">> Track Your Order</a></h6>
<h6><a href="#">> Shipping and Delivery</a></h6>
<h6><a href="#">> Return Policy</a></h6>
</li>
</ul>
</div>
<div class="know-footer">
<ul>
<li>
<h5>GET TO KNOW US</h5>
<h6><a href="#">> Careers</a> </h6>
<h6><a href="about.html">> About Us</a></h6>
<h6><a href="#">> Terms & Conditions</a></h6>
<h6><a href="#">> Privacy Policy</a></h6>
</li>
</ul>
</div>
<div class="social-footer">
<li>
<h5>SOCIAL MEDIA</h5>
<a class="active" href="#"><i class="fa fa-facebook"></i></a>
<br/>
<a href="#"><i class="fa fa-twitter"></i></a>
<br/>
<a href="#"><i class="fa fa-instagram"></i></a>
<br/>
<a href="#"><i class="fa fa-linkedin"></i></a>
<br/>
<a href="#"><i class="fa fa-whatsapp"></i></a>
</li>
</li>
</ul>
</div>
<div class="location-footer">
<ul>
<li>
<!--
including the physical contacts
-->
<h5>PHYSICAL ADRESS:</h5>
<h6> TURNSTONE ARCADE,<br> CHALBI DRIVE C-809, <br>
LAVINGTON<br>
NAIROBI,KENYA</h6>
<h6><b> PHONE:</b> +254 741-862008
<br/></h6>
<h6><b>EMAIL ADDRESS:</b><a href="#mail"> shop.carribeanshoes@gmail.com</a></h6>
</li>
</ul>
</div>
</div>
<h5>Copywrite Turnstone Developer @2019. All rights should be reserved.</h5>
</footer>
</body>
</html>