-
Notifications
You must be signed in to change notification settings - Fork 17
/
contact.html
219 lines (212 loc) · 6.08 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8">
<meta name="author" content="Kamran Mubarik">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title -->
<title>E-Commerce Online Shop</title>
<!-- Style Sheet -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<header>
<div class="container">
<div class="brand">
<div class="logo">
<a href="index.html">
<img src="img/icons/online_shopping.png">
<div class="logo-text">
<p class="big-logo">Ecommerce</p>
<p class="small-logo">online shop</p>
</div>
</a>
</div> <!-- logo -->
<div class="shop-icon">
<div class="dropdown">
<img src="img/icons/account.png">
<div class="dropdown-menu">
<ul>
<li><a href="account.html">My Account</a></li>
<li><a href="orders.html">My Orders</a></li>
</ul>
</div>
</div>
<div class="dropdown">
<img src="img/icons/heart.png">
<div class="dropdown-menu wishlist-item">
<table border="1">
<thead>
<tr>
<th>Image</th>
<th>Product Name</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="img/product/img1.jpg"></td>
<td>product name</td>
</tr>
<tr>
<td><img src="img/product/img2.jpg"></td>
<td>product name</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="dropdown">
<img src="img/icons/shopping_cart.png">
<div class="dropdown-menu cart-item">
<table border="1">
<thead>
<tr>
<th>Image</th>
<th>Product Name</th>
<th class="center">Price</th>
<th class="center">Qty.</th>
<th class="center">Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="img/product/img1.jpg"></td>
<td>product name</td>
<td class="center">1200</td>
<td class="center">2</td>
<td class="center">2400</td>
</tr>
<tr>
<td><img src="img/product/img2.jpg"></td>
<td>product name</td>
<td class="center">1500</td>
<td class="center">2</td>
<td class="center">3000</td>
</tr>
</tbody>
</table>
</div>
</div>
</div> <!-- shop icons -->
</div> <!-- brand -->
<div class="menu-bar">
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="search-bar">
<form>
<div class="form-group">
<input type="text" class="form-control" name="search" placeholder="Search">
<img src="img/icons/search.png">
</div>
</form>
</div>
</div> <!-- menu -->
</div> <!-- container -->
</header> <!-- header -->
<div class="container">
<main>
<div class="contact">
<h2 class="heading">Contact Form</h2>
<form class="checkout-form">
<div class="form-group">
<label>First Name</label>
<input type="text" id="fname" name="fname">
</div>
<div class="form-group">
<label>Last Name</label>
<input type="text" id="lname" name="lname">
</div>
<div class="form-group">
<label>Email Address</label>
<input type="email" id="email" name="email">
</div>
<div class="form-group">
<label>Your Message</label>
<textarea name="message" id="message" rows="10"></textarea>
</div>
<div class="form-group">
<label></label>
<input type="submit" id="contact" name="contact" value="Send">
</div>
</form>
</div>
</main> <!-- Main Area -->
</div>
<footer>
<div class="container">
<div class="footer-widget">
<div class="widget">
<div class="widget-heading">
<h3>Important Link</h3>
</div>
<div class="widget-content">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="refund.html">Refund Policy</a></li>
<li><a href="terms.html">Terms & Conditions</a></li>
</ul>
</div>
</div>
<div class="widget">
<div class="widget-heading">
<h3>Information</h3>
</div>
<div class="widget-content">
<ul>
<li><a href="account.html">My Account</a></li>
<li><a href="orders.html">My Orders</a></li>
<li><a href="cart.html">Cart</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
</div>
</div>
<div class="widget">
<div class="widget-heading">
<h3>Follow us</h3>
</div>
<div class="widget-content">
<div class="follow">
<ul>
<li><a href="#"><img src="img/icons/facebook.png"></a></li>
<li><a href="#"><img src="img/icons/twitter.png"></a></li>
<li><a href="#"><img src="img/icons/instagram.png"></a></li>
</ul>
</div>
</div>
<div class="widget-heading">
<h3>Subscribe for Newsletter</h3>
</div>
<div class="widget-content">
<div class="subscribe">
<form>
<div class="form-group">
<input type="text" class="form-control" name="subscribe" placeholder="Email">
<img src="img/icons/paper_plane.png">
</div>
</form>
</div>
</div>
</div>
</div> <!-- Footer Widget -->
<div class="footer-bar">
<div class="copyright-text">
<p>Copyright 2021 - All Rights Reserved</p>
</div>
<div class="payment-mode">
<img src="img/icons/paper_money.png">
<img src="img/icons/visa.png">
<img src="img/icons/mastercard.png">
</div>
</div> <!-- Footer Bar -->
</div>
</footer> <!-- Footer Area -->
</body>
</html>