-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathviewProd.html
177 lines (159 loc) · 5.74 KB
/
viewProd.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
<!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>view Product</title>
<link rel="stylesheet" href="./styles/viewProd.css">
<!-- font awesome link here... -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<!-- title icone -->
<link rel="shortcut icon" href="https://asset.uniqlo.com/logotypes/uniqlo_roman.ico">
<!-- footer css link here -->
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet" href="./styles/nav.css">
</head>
<body>
<div id="navbarContainer"></div>
<div class="viewProd_container">
<div class="prodSide">
<div class="imageDiv">
<div class="smallImages"></div>
<div class="largeImage"></div>
</div>
<div class="description">
<div class="heading">
<h1>DESCRIPTION</h1>
<h4>Product ID: <span id="productId">445388</span></h4>
</div><br>
<div class="selectOverview">
<hr>
<select name="" id="">
<option value="">Overview</option>
</select>
</div>
<div class="selectOverview">
<hr>
<select name="" id="">
<option value="">Materials</option>
</select>
</div>
<div class="selectOverview">
<hr>
<select name="" id="">
<option value="">Customer Service</option>
</select>
</div>
<div class="selectOverview">
<hr>
<select name="" id="">
<option value="">Return policy</option>
</select>
</div>
<hr><br><br>
<div class="heading">
<h1>REVIEWS (0)</h1>
</div>
<hr><br>
<button class="reviewBtn">WRITE A REVIEW</button>
</div>
</div>
<div class="cartSide">
<div class="content"></div>
<div class="colors">
<h3>COLOUR 12 NATURAL</h3>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="sizes">
<h3>SIZE</h3>
<div>
<div>
<h4>XS</h4>
</div>
<div>
<h4>S</h4>
</div>
<div>
<h4>M</h4>
</div>
<div>
<h4>L</h4>
</div>
<div>
<h4>XL</h4>
</div>
<!-- <div></div> -->
</div>
</div>
<div class="quantity">
<h3>QUANTITY</h3>
<div>
<select name="" id="select">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select><br>
<p>In stock</p>
</div>
</div>
<div id="btnDiv">
</div>
<div class="twoBtn">
<button>ADD TO WISH LIST</button>
<button>FIND STOCK IN STORE</button>
</div><br>
<hr>
<div class="share">
<h3>SHARE</h3>
<div>
<div><i class="fab fa-twitter-square"></i></div>
<div><i class="fab fa-facebook-square"></i></div>
</div>
</div>
</div>
</div>
<div id="popup" class="none">
<div class="overlay"></div>
<!-- <div id="loader">
<img src="https://cdn.dribbble.com/users/1787505/screenshots/7300251/media/a351d9e0236c03a539181b95faced9e0.gif"
alt="Loader" width="100%">
</div> -->
<div class="content">
<div class="close-btn" onclick="toggle()">×</div>
<h3>1 ITEMS ADDED TO YOUR CART</h3>
<div id="itemTotal">
<p>SUBTOTAL | <span>1items(s)</span> </p>
<p id="itemPrice"></p>
</div>
<button id="addBtn">VIEW CART</button>
<button onclick="toggle()" id="continueBtn">CONTINUE SHOPPING</button>
</div>
</div>
<div id="footer-container"></div>
</body>
</html>
<script type="module">
import footer from "./components/footer.js"
let footerdiv = document.getElementById("footer-container");
footerdiv.innerHTML = footer();
</script>
<script src="./scripts/viewProd.js">
</script>
<script type="module" src="./scripts/main.js">
</script>