forked from yogeshkumawat007/Skinstore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingleProduct.html
More file actions
87 lines (79 loc) · 2.76 KB
/
singleProduct.html
File metadata and controls
87 lines (79 loc) · 2.76 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Single Product Page</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./Styles/singleProduct.css" />
<link rel="stylesheet" type="text/css" href="footer.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<div id="nav-container"></div>
<script src="jhnav.js"></script>
<div class="singlePro">
<!-- side div for imgs -->
<div class="singleImgDiv">
<img id="singleProImg1" src="" alt="" />
<img id="singleProImg2" src="" alt="" />
<img id="singleProImg3" src="" alt="" />
</div>
<div class="singleMainDiv">
<img id="singleMainDivImg" src="" alt="" />
</div>
<div class="singleDescriptionDiv">
<div class="sdleft1">
<p id="sppDes">Lorem ipsum dolor sit amet.</p>
<!-- <p id="sppRating">5star</p> -->
<div id="ratingImgDiv">
<img src="./Media/stars.png" alt="" />
<p id="sppRating">5star</p>
</div>
<p>$ <span id="sppPrice"></span></p>
</div>
<div class="sppSize">
<p>Size:</p>
<div>
<button id="smSizebtn">30ml</button>
<button id="bgSizeBtn">75ml</button>
</div>
</div>
<div class="sppQuantity">
<p>Quantity:</p>
<div>
<button id="sppDecBtn">-</button>
<span id="sppQuantitySpan"></span>
<button id="sppIncBtn">+</button>
</div>
<div>
<button id="sppAddToCard">ADD TO CART</button>
</div>
<div id="sppAddWishlist">
<span class="material-symbols-outlined"> favorite </span>
<p>Save to Wishlist</p>
</div>
</div>
</div>
</div>
<!-- other customer bougth -->
<div class="otherCustomer">
<h1>Other customers bought:</h1>
<div id="upsellProductShowcase" class="upsellProductShowcase">
<!-- Random products -->
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script src="./Scripts/singleProduct.js"></script>