-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuy.html
278 lines (227 loc) · 9.73 KB
/
buy.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html>
<head>
<title>Fz</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.4/css/fontawesome.min.css">
</head>
<body>
<nav class="navbar background h-nav-resp">
<ul class="nav-list v-class-resp">
<div class="logo">
<img src="image1.jpg" alt="ïmg" >
</div>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="address.html" style="color: red;" ><i class="fa fa-map-marker" aria-hidden="true"></i>Select your address</a></li>
</ul>
<div class="rightNav v-class-resp">
<input type="text" name="search" id="search1">
<button class="btn2search">Search</button>
</div>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
<div class="row">
<div class="col-75">
<div class="container">
<form action="/action_page.php">
<div class="row">
<div class="col-50">
<h3>Billing Address</h3>
<label for="fname"><i class="fa fa-user"></i> Full Name</label>
<input type="text1" id="fname" name="firstname" placeholder="John M. Doe">
<label for="email"><i class="fa fa-envelope"></i> Email</label>
<input type="text1" id="email" name="email" placeholder="john@example.com">
<label for="adr"><i class="fa fa-address-card-o"></i> Address</label>
<input type="text1" id="adr" name="address" placeholder="542 W. 15th Street">
<label for="city"><i class="fa fa-institution"></i> City</label>
<input type="text1" id="city" name="city" placeholder="New York">
<div class="row">
<div class="col-50">
<label for="state">State</label>
<input type="text" id="state" name="state" placeholder="NY">
</div>
<div class="col-50">
<label for="zip">Zip</label>
<input type="text" id="zip" name="zip" placeholder="10001">
</div>
</div>
</div>
<div class="col-50">
<h3>Payment</h3>
<label for="fname">Accepted Cards</label>
<div class="icon-container">
<i class="fa fa-cc-visa" style="color:navy;"></i>
<i class="fa fa-cc-amex" style="color:blue;"></i>
<i class="fa fa-cc-mastercard" style="color:red;"></i>
<i class="fa fa-cc-discover" style="color:orange;"></i>
</div>
<label for="cname">Name on Card</label>
<input type="text" id="cname" name="cardname" placeholder="John More Doe">
<label for="ccnum">Credit card number</label>
<input type="text" id="ccnum" name="cardnumber" placeholder="1111-2222-3333-4444">
<label for="expmonth">Exp Month</label>
<input type="text" id="expmonth" name="expmonth" placeholder="September">
<div class="row">
<div class="col-50">
<label for="expyear">Exp Year</label>
<input type="text" id="expyear" name="expyear" placeholder="2018">
</div>
<div class="col-50">
<label for="cvv">CVV</label>
<input type="text" id="cvv" name="cvv" placeholder="352">
</div>
</div>
</div>
</div>
<label>
<input type="checkbox" checked="checked" name="sameadr"> Shipping address same as billing
</label>
<input type="submit" value="Continue to checkout" class="btn">
</form>
</div>
</div>
<div class="col-25">
<div class="container">
<h4>Cart
<span class="price" style="color:black">
<i class="fa fa-shopping-cart"></i>
<b>4</b>
</span>
</h4>
<p><a href="#">Product 1</a> <span class="price">$15</span></p>
<p><a href="#">Product 2</a> <span class="price">$5</span></p>
<p><a href="#">Product 3</a> <span class="price">$8</span></p>
<p><a href="#">Product 4</a> <span class="price">$2</span></p>
<hr>
<p>Total <span class="price" style="color:black"><b>$30</b></span></p>
</div>
</div>
</div>
<div class="buynow" style="padding-top: 100px;">
<h2>Explore More Trends</h2>
<div class="buynow_container" style="padding-bottom: 50px;">
<div class="itemnow">
<div class="itemnow_img">
<img src="buy1.jpg">
</div>
<div class="itemnow_content">
<h3>PLANE DENIM</h3>
<p>Raw or unwashed denim is a fabric that is not washed after the dying process. It is stiff to the touch nd smooth .<br></p>
<a href="buy.html">Buy Now</a>
</div>
</div>
<div class="itemnow">
<div class="itemnow_img">
<img src="buy2.jpg" >
</div>
<div class="itemnow_content">
<h3>CLASSIC DENIM</h3>
<p>Get comfort, durability, and great styling smooth to touch and smooth for trend also for the look cool in everywhere<br></p>
<a href="buy.html">Buy Now</a>
</div>
</div>
<div class="itemnow">
<div class="itemnow_img">
<img src="buy3.jpg">
</div>
<div class="itemnow_content">
<h3>ROUGH DENIM</h3>
<p>Denim is a sturdy and durable fabric, which is woven in a manner that it can be effortlessly worn in rough .</p>
<a href="buy.html">Buy Now</a>
</div>
</div>
<div class="itemnow">
<div class="itemnow_img">
<img src="buy4.jpg" >
</div>
<div class="itemnow_content">
<h3>BLACK CLASSIC DENIM</h3>
<p> Made for the bold and the confident. The unmistakably intense and woody accord of Patchouli, Sandalwood .</p>
<a href="buy.html">Buy Now</a>
</div>
</div>
</div>
<div class="buy">
<a href="service.html">Explore Our Products</a>
</div>
</div>
<hr>
<div class="feed">
<h2>Write a preview</h2>
<div class="feed_form">
<form name="submit-googlesheet" method="post">
<input type="text" name="Name" placeholder="Name"><br>
<input type="email" name="Email" placeholder="Email ID"><br>
<input type="number" name="Number" placeholder="Contact Number"><br>
<textarea rows="5" cols="7" name="Review" placeholder="Write your review"></textarea><br>
<button type="submit">Submit</button>
</form>
</div>
</div>
<footer>
<div class="footer_logo">
<a href="#"><img src="logo.jpg" width="150"></a>
</div>
<div class="pages">
<h3>Pages</h3>
<a href="">About us</a>|
<a href="">Services</a>|
<a href="">Blogs</a>|
<a href="">Login</a>|
<a href="">Sign Up</a>
</div>
<div class="doc">
<h3>Documents</h3>
<a href="">Privacy Policy</a>|
<a href="">Terms of use</a>|
<a href="">Refund Policy</a>
</div>
<div class="social">
<h3>Follow us</h3>
<a href="https://www.facebook.com/fawaaz.sarafolu.9" target="_black"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/feed/"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
<a href="https://www.instagram.com/fawaaz_sarafolu/"><i class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="https://twitter.com/home"><i class="fa fa-twitter" aria-hidden="true"></i></a>
</div>
<div class="contact">
<h3>Contact Us</h3>
<a href="http: //api.Whatsapp.com/send?phone:=+9818130492" target="_black "><i class="fa fa-whatsapp" aria-hidden="true"></i></a>
<a href="tel: 9818130492"><i class="fa fa-phone" aria-hidden="true"></i></a>
<a href="mailto: sarafolufawaaz@gmail.com"><i class="fa fa-envelope-o" aria-hidden="true"></i></a>
</div>
<hr>
<p>Copyright © 2021 1stop.All right reserved</p>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycbzUhMV4vJvfUkOT21LwBcre0CGNWHtEZhlnqUYnKHna6EAmqTq_jVISk4cadtKHsLqO/exec'
const form = document.forms['submit-googlesheet']
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, {
method: 'POST',
body: new FormData(form)
})
.then(response => alert(
"Thanks for you will get back to you soon.. "))
.catch(error => console.error('Error!', error.message))
})
</script>
<script src="resp.js"></script>
</body>
</html>