-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
644 lines (639 loc) · 27.4 KB
/
product.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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>一起购</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href='http://fonts.useso.com/css?family=Open+Sans:400,300italic,400italic,600,600italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.useso.com/css?family=Crete+Round' rel='stylesheet' type='text/css'>
<link href='http://fonts.useso.com/css?family=Crete+Round' rel='stylesheet' type='text/css'><link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/flexslider.css" type="text/css" media="screen" rel="stylesheet" />
<link href="css/jquery.fancybox.css" rel="stylesheet">
<link href="css/cloud-zoom.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- fav -->
<link rel="shortcut icon" href="assets/ico/favicon.html">
</head>
<body>
<!-- Header Start -->
<header>
<div class="headerstrip">
<div class="container">
<div class="row">
<div class="span12">
<a href="index-2.html" class="logo pull-left"><img src="img/logo.png" alt="SimpleOne" title="SimpleOne"></a>
<!-- Top Nav Start -->
<div class="pull-left">
<div class="navbar" id="topnav">
<div class="navbar-inner">
<ul class="nav" >
<li><a class="home active" href="#">Home</a>
</li>
<li><a class="myaccount" href="#">My Account</a>
</li>
<li><a class="shoppingcart" href="#">Shopping Cart</a>
</li>
<li><a class="checkout" href="#">CheckOut</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Top Nav End -->
<div class="pull-right">
<form class="form-search top-search">
<input type="text" class="input-medium search-query" placeholder="Search Here…">
</form>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="headerdetails">
<div class="pull-left">
<ul class="nav language pull-left">
<li class="dropdown hover">
<a href="#" class="dropdown-toggle" data-toggle="">US Doller <b class="caret"></b></a>
<ul class="dropdown-menu currency">
<li><a href="#">US Doller</a>
</li>
<li><a href="#">Euro </a>
</li>
<li><a href="#">British Pound</a>
</li>
</ul>
</li>
<li class="dropdown hover">
<a href="#" class="dropdown-toggle" data-toggle="">English <b class="caret"></b></a>
<ul class="dropdown-menu language">
<li><a href="#">English</a>
</li>
<li><a href="#">Spanish</a>
</li>
<li><a href="#">German</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="pull-right">
<ul class="nav topcart pull-left">
<li class="dropdown hover carticon ">
<a href="#" class="dropdown-toggle" > Shopping Cart <span class="label label-orange font14">1 item(s)</span> - $589.50 <b class="caret"></b></a>
<ul class="dropdown-menu topcartopen ">
<li>
<table>
<tbody>
<tr>
<td class="image"><a href="product.html"><img width="50" height="50" src="img/prodcut-40x40.jpg" alt="product" title="product"></a></td>
<td class="name"><a href="product.html">MacBook</a></td>
<td class="quantity">x 1</td>
<td class="total">$589.50</td>
<td class="remove"><i class="icon-remove"></i></td>
</tr>
<tr>
<td class="image"><a href="product.html"><img width="50" height="50" src="img/prodcut-40x40.jpg" alt="product" title="product"></a></td>
<td class="name"><a href="product.html">MacBook</a></td>
<td class="quantity">x 1</td>
<td class="total">$589.50</td>
<td class="remove"><i class="icon-remove "></i></td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td class="textright"><b>Sub-Total:</b></td>
<td class="textright">$500.00</td>
</tr>
<tr>
<td class="textright"><b>Eco Tax (-2.00):</b></td>
<td class="textright">$2.00</td>
</tr>
<tr>
<td class="textright"><b>VAT (17.5%):</b></td>
<td class="textright">$87.50</td>
</tr>
<tr>
<td class="textright"><b>Total:</b></td>
<td class="textright">$589.50</td>
</tr>
</tbody>
</table>
<div class="well pull-right buttonwrap">
<a class="btn btn-orange" href="#">View Cart</a>
<a class="btn btn-orange" href="#">Checkout</a>
</div>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="categorymenu">
<nav class="subnav">
<ul class="nav-pills categorymenu">
<li><a class="active" href="index-2.html">Home</a>
<div>
<ul>
<li><a href="index2.html">Home Style 2</a>
</li>
<li><a href="index3.html">Home Style 3</a>
</li>
<li><a href="index4.html">Home Style 4</a>
</li>
<li><a href="index5.html">Home Style 5</a>
</li>
<li><a href="index6.html">Home Style 6</a>
</li>
<li><a href="index-2.html">Home Style 1</a>
</li>
</ul>
</div>
</li>
<li><a href="product.html">Products</a>
<div>
<ul>
<li><a href="product.html">Product style 1</a>
</li>
<li><a href="product2.html">Product style 2</a>
</li>
<li><a href="#"> Women's Accessories</a>
</li>
<li><a href="#">Men's Accessories <span class="label label-success">Sale</span>
</a>
</li>
<li><a href="#">Dresses </a>
</li>
<li><a href="#">Shoes <span class="label label-warning">(25)</span>
</a>
</li>
<li><a href="#">Bags <span class="label label-info">(new)</span>
</a>
</li>
<li><a href="#">Sunglasses </a>
</li>
</ul>
<ul>
<li><img src="img/proudctbanner.jpg" alt="" title="">
</li>
</ul>
</div>
</li>
<li><a href="category.html">Categories</a>
</li>
<li><a href="shopping-cart.html">Shopping Cart</a>
</li>
<li><a href="checkout.html">Checkout</a>
</li>
<li><a href="compare.html">Compare</a>
</li>
<li><a href="blog.html">Blog</a>
<div>
<ul>
<li><a href="blog.html">Blog page</a>
</li>
<li><a href="bloglist.html">Blog List VIew</a>
</li>
</ul>
</div>
</li>
<li><a href="myaccount.html">My Account</a>
<div>
<ul>
<li><a href="myaccount.html">My Account</a>
</li>
<li><a href="login.html">Login</a>
</li>
<li><a href="register.html">Register</a>
</li>
<li><a href="wishlist.html">Wishlist</a>
</li>
</ul>
</div>
</li>
<li><a href="features.html">Features</a>
</li>
<li><a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- Header End -->
<div id="maincontainer">
<section id="product">
<div class="container">
<!-- Product Details-->
<div class="row">
<!-- Left Image-->
<div class="span5">
<ul class="thumbnails mainimage">
<li class="span5">
<a rel="position: 'inside' , showTitle: false, adjustX:-4, adjustY:-4" class="thumbnail cloud-zoom" href="img/product1big.jpg">
<img src="img/product1big.jpg" alt="" title="">
</a>
</li>
<li class="span5">
<a rel="position: 'inside' , showTitle: false, adjustX:-4, adjustY:-4" class="thumbnail cloud-zoom" href="img/product2big.jpg">
<img src="img/product2big.jpg" alt="" title="">
</a>
</li>
<li class="span5">
<a rel="position: 'inside' , showTitle: false, adjustX:-4, adjustY:-4" class="thumbnail cloud-zoom" href="img/product1big.jpg">
<img src="img/product1big.jpg" alt="" title="">
</a>
</li>
<li class="span5">
<a rel="position: 'inside' , showTitle: false, adjustX:-4, adjustY:-4" class="thumbnail cloud-zoom" href="img/product2big.jpg">
<img src="img/product2big.jpg" alt="" title="">
</a>
</li>
</ul>
<span>Mouse move on Image to zoom</span>
<ul class="thumbnails mainimage">
<li class="producthtumb">
<a class="thumbnail" >
<img src="img/product1.jpg" alt="" title="">
</a>
</li>
<li class="producthtumb">
<a class="thumbnail" >
<img src="img/product2.jpg" alt="" title="">
</a>
</li>
<li class="producthtumb">
<a class="thumbnail" >
<img src="img/product1.jpg" alt="" title="">
</a>
</li>
<li class="producthtumb">
<a class="thumbnail" >
<img src="img/product2.jpg" alt="" title="">
</a>
</li>
</ul>
</div>
<!-- Right Details-->
<div class="span7">
<div class="row">
<div class="span7">
<h1 class="productname"><span class="bgnone">My First Simle One Ecommerce template</span></h1>
<div class="productprice">
<div class="productpageprice">
<span class="spiral"></span>$230.00</div>
<div class="productpageoldprice">Old price : $345.00</div>
<ul class="rate">
<li class="on"></li>
<li class="on"></li>
<li class="on"></li>
<li class="off"></li>
<li class="off"></li>
</ul>
</div>
<div class="quantitybox">
<select class="selectsize">
<option>Select Size</option>
<option>Red</option>
<option>Green</option>
<option>Blue</option>
<option>Black</option>
</select>
<select class="selectqty">
<option>Select</option>
<option>24</option>
<option>36</option>
<option>48</option>
</select>
<div class="clear"></div>
<div class="control-group">
<div class="controls">
<label class="checkbox">
<input type="checkbox" name="optionsCheckboxList2" value="option2">
Option two can also be checked and included in form results </label>
<label class="checkbox">
<input type="checkbox" name="optionsCheckboxList3" value="option3">
Option three can—yes, you guessed it—also be checked and included in form results </label>
`
<label class="radio">
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
Option one is this and that—be sure to include why it's great </label>
<label class="radio">
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Option two can be something else and selecting it will deselect option one </label>
</div>
</div>
</div>
<ul class="productpagecart">
<li><a class="cart" href="#">Add to Cart</a>
</li>
<li><a class="wish" href="#" >Add to Wishlist</a>
</li>
<li><a class="comare" href="#" >Add to Compare</a>
</li>
</ul>
<!-- Product Description tab & comments-->
<div class="productdesc">
<ul class="nav nav-tabs" id="myTab">
<li class="active"><a href="#description">Description</a>
</li>
<li><a href="#specification">Specification</a>
</li>
<li><a href="#review">Review</a>
</li>
<li><a href="#producttag">Tags</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="description">
<h2>h2 tag will be appear</h2>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum <br>
<br>
<ul class="listoption3">
<li>Lorem ipsum dolor sit amet Consectetur adipiscing elit</li>
<li>Integer molestie lorem at massa Facilisis in pretium nisl aliquet</li>
<li>Nulla volutpat aliquam velit </li>
<li>Faucibus porta lacus fringilla vel Aenean sit amet erat nunc Eget porttitor lorem</li>
</ul>
</div>
<div class="tab-pane " id="specification">
<ul class="productinfo">
<li>
<span class="productinfoleft"> Product Code:</span> Product 16 </li>
<li>
<span class="productinfoleft"> Reward Points:</span> 60 </li>
<li>
<span class="productinfoleft"> Availability: </span> In Stock </li>
<li>
<span class="productinfoleft"> Old Price: </span> $500.00 </li>
<li>
<span class="productinfoleft"> Ex Tax: </span> $500.00 </li>
<li>
<span class="productinfoleft"> Ex Tax: </span> $500.00 </li>
<li>
<span class="productinfoleft"> Product Code:</span> Product 16 </li>
<li>
<span class="productinfoleft"> Reward Points:</span> 60 </li>
</ul>
</div>
<div class="tab-pane" id="review">
<h3>Write a Review</h3>
<form class="form-vertical">
<fieldset>
<div class="control-group">
<label class="control-label">Text input</label>
<div class="controls">
<input type="text" class="span3">
</div>
</div>
<div class="control-group">
<label class="control-label">Textarea</label>
<div class="controls">
<textarea rows="3" class="span3"></textarea>
</div>
</div>
</fieldset>
<input type="submit" class="btn btn-orange" value="continue">
</form>
</div>
<div class="tab-pane" id="producttag">
<p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum <br>
<br>
</p>
<ul class="tags">
<li><a href="#"><i class="icon-tag"></i> Webdesign</a>
</li>
<li><a href="#"><i class="icon-tag"></i> html</a>
</li>
<li><a href="#"><i class="icon-tag"></i> html</a>
</li>
<li><a href="#"><i class="icon-tag"></i> css</a>
</li>
<li><a href="#"><i class="icon-tag"></i> jquery</a>
</li>
<li><a href="#"><i class="icon-tag"></i> css</a>
</li>
<li><a href="#"><i class="icon-tag"></i> jquery</a>
</li>
<li><a href="#"><i class="icon-tag"></i> Webdesign</a>
</li>
<li><a href="#"><i class="icon-tag"></i> css</a>
</li>
<li><a href="#"><i class="icon-tag"></i> jquery</a>
</li>
<li><a href="#"><i class="icon-tag"></i> Webdesign</a>
</li>
<li><a href="#"><i class="icon-tag"></i> html</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Related Products-->
<section id="related" class="row">
<div class="container">
<h1 class="heading1"><span class="maintext">Related Products</span><span class="subtext"> See Our Most featured Products</span></h1>
<ul class="thumbnails">
<li class="span3">
<a class="prdocutname" href="product.html">Product Name Here</a>
<div class="thumbnail">
<span class="sale tooltip-test">Sale</span>
<a href="#"><img alt="" src="img/product1.jpg"></a>
<div class="shortlinks">
<a class="details" href="#">DETAILS</a>
<a class="wishlist" href="#">WISHLIST</a>
<a class="compare" href="#">COMPARE</a>
</div>
<div class="pricetag">
<span class="spiral"></span><a href="#" class="productcart">ADD TO CART</a>
<div class="price">
<div class="pricenew">$4459.00</div>
<div class="priceold">$5000.00</div>
</div>
</div>
</div>
</li>
<li class="span3">
<a class="prdocutname" href="product.html">Product Name Here</a>
<div class="thumbnail">
<a href="#"><img alt="" src="img/product2.jpg"></a>
<div class="shortlinks">
<a class="details" href="#">DETAILS</a>
<a class="wishlist" href="#">WISHLIST</a>
<a class="compare" href="#">COMPARE</a>
</div>
<div class="pricetag">
<span class="spiral"></span><a href="#" class="productcart">ADD TO CART</a>
<div class="price">
<div class="pricenew">$4459.00</div>
<div class="priceold">$5000.00</div>
</div>
</div>
</div>
</li>
<li class="span3">
<a class="prdocutname" href="product.html">Product Name Here</a>
<div class="thumbnail">
<span class="offer tooltip-test" >Offer</span>
<a href="#"><img alt="" src="img/product1.jpg"></a>
<div class="shortlinks">
<a class="details" href="#">DETAILS</a>
<a class="wishlist" href="#">WISHLIST</a>
<a class="compare" href="#">COMPARE</a>
</div>
<div class="pricetag">
<span class="spiral"></span><a href="#" class="productcart">ADD TO CART</a>
<div class="price">
<div class="pricenew">$4459.00</div>
<div class="priceold">$5000.00</div>
</div>
</div>
</div>
</li>
<li class="span3">
<a class="prdocutname" href="product.html">Product Name Here</a>
<div class="thumbnail">
<a href="#"><img alt="" src="img/product2.jpg"></a>
<div class="shortlinks">
<a class="details" href="#">DETAILS</a>
<a class="wishlist" href="#">WISHLIST</a>
<a class="compare" href="#">COMPARE</a>
</div>
<div class="pricetag">
<span class="spiral"></span><a href="#" class="productcart">ADD TO CART</a>
<div class="price">
<div class="pricenew">$4459.00</div>
<div class="priceold">$5000.00</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>
<!-- Popular Brands-->
<section id="popularbrands" class="container">
<h1 class="heading1"><span class="maintext">Popular Brands</span><span class="subtext"> See Our Popular Brands</span></h1>
<div class="brandcarousalrelative">
<ul id="brandcarousal">
<li><img src="img/brand1.jpg" alt="" title=""/></li>
<li><img src="img/brand2.jpg" alt="" title=""/></li>
<li><img src="img/brand3.jpg" alt="" title=""/></li>
<li><img src="img/brand4.jpg" alt="" title=""/></li>
<li><img src="img/brand1.jpg" alt="" title=""/></li>
<li><img src="img/brand2.jpg" alt="" title=""/></li>
<li><img src="img/brand3.jpg" alt="" title=""/></li>
<li><img src="img/brand4.jpg" alt="" title=""/></li>
<li><img src="img/brand1.jpg" alt="" title=""/></li>
<li><img src="img/brand2.jpg" alt="" title=""/></li>
<li><img src="img/brand3.jpg" alt="" title=""/></li>
<li><img src="img/brand4.jpg" alt="" title=""/></li>
</ul>
<div class="clearfix"></div>
<a id="prev" class="prev" href="#"><</a>
<a id="next" class="next" href="#">></a>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<section class="footersocial">
<div class="container">
<div class="row">
<div class="span3 aboutus">
<h2>About Us </h2>
<p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. <br>
<br>
t has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
</div>
<div class="span3 contact">
<h2>Contact Us </h2>
<ul>
<li class="phone"> +123 456 7890, +123 456 7890</li>
<li class="mobile"> +123 456 7890, +123 456 78900</li>
<li class="email"> [email protected]</li>
<li class="email"> [email protected]</li>
</ul>
</div>
<div class="span3 twitter">
<h2>Twitter </h2>
<div>
</div>
</div>
<div class="span3 facebook">
<h2>Facebook </h2>
<div id="fb-root"></div>
</div>
</div>
</div>
</section>
<section class="footerlinks">
<div class="container">
<div class="info">
<ul>
<li><a href="#">Privacy Policy</a>
</li>
<li><a href="#">Terms & Conditions</a>
</li>
<li><a href="#">Affiliates</a>
</li>
<li><a href="#">Newsletter</a>
</li>
</ul>
</div>
<div id="footersocial">
<a href="#" title="Facebook" class="facebook">Facebook</a>
<a href="#" title="Twitter" class="twitter">Twitter</a>
<a href="#" title="Linkedin" class="linkedin">Linkedin</a>
<a href="#" title="rss" class="rss">rss</a>
<a href="#" title="Googleplus" class="googleplus">Googleplus</a>
<a href="#" title="Skype" class="skype">Skype</a>
<a href="#" title="Flickr" class="flickr">Flickr</a>
</div>
</div>
</section>
<section class="copyrightbottom">
<div class="container">
<div class="row">
<div class="span6"> All images are copyright to their owners. More Templates <a href="http://www.cssmoban.com/" target="_blank" title="模板之家">模板之家</a> - Collect from <a href="http://www.cssmoban.com/" title="网页模板" target="_blank">网页模板</a></div>
<div class="span6 textright"> ShopSimple @ 2012 </div>
</div>
</div>
</section>
<a id="gotop" href="#">Back to top</a>
</footer>
<!-- javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/respond.min.js"></script>
<script src="js/application.js"></script>
<script src="js/bootstrap-tooltip.js"></script>
<script defer src="js/jquery.fancybox.js"></script>
<script defer src="js/jquery.flexslider.js"></script>
<script type="text/javascript" src="js/jquery.tweet.js"></script>
<script src="js/cloud-zoom.1.0.2.js"></script>
<script type="text/javascript" src="js/jquery.validate.js"></script>
<script type="text/javascript" src="js/jquery.carouFredSel-6.1.0-packed.js"></script>
<script type="text/javascript" src="js/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="js/jquery.touchSwipe.min.js"></script>
<script type="text/javascript" src="js/jquery.ba-throttle-debounce.min.js"></script>
<script defer src="js/custom.js"></script>
</body>
</html>