-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.html
300 lines (281 loc) · 15.2 KB
/
custom.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<!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">
<title>Blinkee</title>
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!--Font Awsome CDN-->
<script src="https://kit.fontawesome.com/6d0a6cebb3.js" crossorigin="anonymous"></script>
<!--Custom Stylesheet-->
<link rel="stylesheet" href="css/customProduct.css">
<link rel="stylesheet" href="css/animate.min.css">
<!---light-slider.css---->
<link rel="stylesheet" type="text/css" href="css/lightslider.css">
<!---jQuery---->
<script type="text/javascript" src="js/jQuery.js"></script>
<!--lightslider.js-->
<script type="text/javascript" src="js/lightslider.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<!--Favicon Slider-->
<link rel="shortcut icon" href="assets/favB.png">
<!--Slick Slider-->
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.css"/>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-12 col-12">
<div class="btn-group">
<button
class="btn border dropdown-toggle my-md-4 my-2 text-white" data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
$-USD
</button>
<div class="dropdown-menu">
<a href="#" class="dropdown-item">ERU-Euro</a>
</div>
</div>
</div>
<div class="col-md-4 col-12 text-center">
<h2 class="my-md-3 site-title text-white">Blinkee Store</h2>
</div>
<div class="col-md-4 col-12 text-right">
<p class="my-md-4 header-links">
<a href="login.html" class="px-2">Sign In Or Create an Account</a>
<!-- <a href="#" class="bg-black-color">|</a>-->
<!-- <a href="#" class="px-1">Create an Account</a>-->
</p>
</div>
</div>
</div>
<div class="container-fluid p-0">
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<button class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">HOME<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="products.html">PRODUCTS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="products.html">ABOUT US</a>
</li>
<li class="nav-item">
<a class="nav-link" href="sample.html">SAMPLE</a>
</li>
<li class="nav-item">
<a class="nav-link" href="custom.html">CUSTOM</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">ACCOUNT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">BLOG</a>
</li>
<li class="nav-item">
<a class="nav-link" href="testermonial.html">TESTIMONIALS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus1.html">CONTACT US</a>
</li>
<li class="nav-item">
<a class="nav-link" href="reseller.html">RESELLER</a>
</li>
</ul>
<div class="navbar-nav text-left">
<li class="nav-item border rounded-circle mx-2 search-icon">
<i class="fas fa-search p-2"></i>
</li>
<li class="nav-item border rounded-circle mx-2 repeat-icon">
<i class="fas fa-circle-notch p-2"></i>
</li>
<li class="nav-item border rounded-circle mx-2 wishlist-icon">
<i class="far fa-heart p-2"></i>
</li>
<li class="nav-item border rounded-circle mx-2 basket-icon">
<a href="cart.html"><i class="fas fa-shopping-cart p-2"></i></a>
</li>
</div>
</div>
</nav>
</div>
</header>
<!-- /Header -->
<!-- Main -->
<main>
<div class="custom-header container site-title text-center mt-4 mb-4">
<h2>Customize Your Blinkee Product</h2>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8">
<div id="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
How Can I Customize the product ?
</button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
How Many Days it will take to deliver Product ?
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
How Can I Track my Work ?
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="ad-section">
<p>Custom flashing lapel pins are Magic Matt's specialty.
LogoBlinkee.com has many examples of exciting pins we've
done for some of the best companies in the world.</p>
<img src="assets/slider/2678.jpg" width="100%">
</div>
</div>
</div>
</div>
<div class="container">
<div class="sample-box">
<label>Please Complete the form below so we can get start on your project</label>
<form>
<div class="form-row">
<div class="col">
<label for="input1">First Name :<span class="red">*</span></label>
<input id="input1" type="text" class="form-control mb-2" placeholder="First Name" required>
<label for="input3">Email Address :</label>
<input id="input3" type="text" class="form-control mb-2" placeholder="Email Address">
<label for="input4">In Hand Deadline :</label>
<input id="input4" type="text" class="form-control mb-2" placeholder="In Hand Deadline">
<label for="input5">Class Type :<span class="red">*</span></label>
<input id="input5" type="text" class="form-control mb-2" placeholder="Class Type" required>
<label for="input8">Products SKU:<span class="red">*</span></label>
<input id="input8" type="text" class="form-control mb-2" placeholder="Products SKU" required>
<label for="input9">Quantity :<span class="red">*</span></label>
<input id="input9" type="text" class="form-control mb-2" placeholder="Quantity" required>
<button class="btn btn-secondary">Submit Details</button>
</div>
<div class="col">
<label for="input2">Last Name : <span class="red">*</span></label>
<input id="input2" type="text" class="form-control mb-2" placeholder="Last Name" required>
<label for="input6">Phone Number :</label>
<div class="pd-telephone-input"></div>
<input id="input6" type="tel" class="form-control mb-2" placeholder="Phone Number">
<label for="input7">Event Date :</label>
<input id="input7" type="date" class="form-control mb-2" placeholder="Event Date">
<label for="input11">Art Work :</label>
<input id="input11" type="text" class="form-control mb-2" placeholder="Art Work">
<label >Art Work Upload :</label>
<div class="custom-file">
<input type="file" class="custom-file-input" id="inputGroupFile01">
<label class="custom-file-label" for="inputGroupFile01">Choose file</label>
</div>
</div>
</div>
</form>
</div>
</div>
</main>
<!-- /Main -->
<footer>
<!--footer--->
<section class="footer">
<div class="container">
<div class="row">
<div class="footer-col-1">
<h3>Download Our App</h3>
<p>Download App for Android and ios mobile phone.</p>
<div class="app-logo">
<img src="assets/play-store.png">
<img src="assets/app-store.png">
</div>
</div>
<div class="footer-col-2">
<img src="assets/blinkee.png" alt="">
<p>Magic Matt’s Brilliant Blinkys provides exciting
glow in the dark toys, flashing jewelry, blinking pins,
flashy blinkys and accessories for the twenty-first century.</p>
</div>
<div class="footer-col-3">
<h3>Useful Links</h3>
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
<li>Cart</li>
<li>Checkout</li>
</ul>
</div>
<div class="footer-col-3">
<h3>Follow Us</h3>
<ul>
<li>Account</li>
<li>Custom</li>
<li>Blinkee.com Resellers and Dropshippers</li>
<li>Shipping Policy</li>
<li>Return Policy</li>
</ul>
</div>
</div>
<hr>
<p class="copyright">Copyright 2020 - blinkee.com</p>
</div>
</section>
</footer>
<script src="bootstrap-input-spinner-master/src/bootstrap-input-spinner.js"></script>
<script>
$("input[type='number']").inputSpinner();
</script>
<!-- JS, Popper.js, and jQuery -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script>
</body>
</html>