-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdetails.html
125 lines (114 loc) · 5.32 KB
/
details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product details page</title>
<!-- static links -->
<link rel="stylesheet" href="./styles/details.css">
<!-- <link rel="stylesheet" href="./styles/index.css"> -->
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/footer.css">
<!-- static link ends -->
<!--------------------------------->
<!-- font awesome cdn link below -->
<!--------------------------------->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--------------------------------->
<!-- font awesome cdn link done -->
<!--------------------------------->
<!-------------------------------------->
<!-- swipper js javascript framework -->
<!-------------------------------------->
<link href="
https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/css/splide.min.css
" rel="stylesheet">
<!-------------------------------------->
<!-- swipper js javascript framework -->
<!-------------------------------------->
</head>
</head>
<body>
<div id="navbar"></div>
<div class="container">
<div class="details_first">
<div class="images_left">
<section id="details_image_slider" class="splide splideImage" aria-label="Details slider">
<div class="splide__track">
<ul id="image_list" class="splide__list">
</ul>
</div>
</section>
<br>
<section id="thumbnail-slider" class="splide thumbnail_image" aria-label="thumbnail_list">
<div class="splide__arrows splide__arrows--ltr">
<button class="splide__arrow splide__arrow--prev" type="button" aria-label="Previous slide"
aria-controls="feature_slider-track" style="border-radius: 5px !important;
height:40px !important;
width: 40px !important; background-color: rgba(165, 165, 165, 0.2);">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" width="40" height="40"
focusable="false">
<path
d="m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z">
</path>
</svg>
</button>
<button" class="splide__arrow splide__arrow--next" type="button" aria-label="Go to first slide"
aria-controls="feature_slider-track" style="border-radius: 5px !important;
height:40px !important;
width: 40px !important; background-color: rgba(165, 165, 165, 0.2);">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" width="40" height="40"
focusable="false">
<path
d="m15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z">
</path>
</svg>
</button>
</div>
<div class="splide__track">
<ul id="thumbnail_list" class="splide__list">
</ul>
</div>
</section>
</div>
<div class="product_details_right">
<p id="category">Category</p>
<p id="prod_name">Rear Center View Mirror 7N2Z17000AB – Fits Ford Figo (Type 1) / Fiesta / Fiesta
Classic</p>
<p id="rating">Rating 42 - 342</p>
<p id="original">MRP <span class="strike-through">Rs. 2000</span> </p>
<div id="discount">
<p>Rs. 825</p><span class="discount">59% OFF</span>
</div>
<div>
<input min="1" type="text" inputmode="numeric" id="quantity" value="1"><button id="addToCart">Add to Cart <i class="fa-solid fa-cart-shopping" style="color: #000000;"></i></button>
</div>
<div id="hightlights" class="hightlights">
</div>
</div>
</div>
<br>
<br>
<div class="other_specs">
<div class="spec_title">
<p id="specs" class="headings t-active">Specifications</p>
<p id="desc" class="headings">Description</p>
<p id="terms" class="headings">Terms & Condition</p>
</div>
<div id="detail_append">
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<footer id="footer"></footer>
<script src="
https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/js/splide.min.js
"></script>
<script src="./scripts/details.js" type="module"></script>
</body>
</html>