-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproductinfo.html
166 lines (150 loc) · 5.36 KB
/
productinfo.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
<!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>Product Info</title>
<link rel="stylesheet" href="./styles/productinfo.css">
<link rel="shortcut icon" href="https://asset.uniqlo.com/logotypes/uniqlo_roman.ico">
<link rel="stylesheet" href="./styles/footer.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" />
<script src="https://kit.fontawesome.com/f7879b5792.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/styles/nav.css" />
</head>
<body>
<div id="navbarContainer"></div>
<div id="main_container">
<div id="leftside">
<div id="imgdiv">
<div id="smallimg"></div>
<div id="largeimg"></div>
</div>
<div id="description">
<div id="heading">
<h1>DESCRIPTION</h1>
<h4>Product ID: <span id="productId">445388</span></h4>
</div>
<br>
<div id="Overview">
<hr>
<select name="" id="">
<option value="">Overview</option>
</select>
</div>
<div id="Overview">
<hr>
<select name="" id="">
<option value="">Materials</option>
</select>
</div>
<div id="Overview">
<hr>
<select name="" id="">
<option value="">Customer Service</option>
</select>
</div>
<div id="Overview">
<hr>
<select name="" id="">
<option value="">Return Policy</option>
</select>
</div>
<hr>
<div id="heading">
<h1>REVIEWS (0)</h1>
</div><hr><br>
<button id="reviewBtn">WRITE A REVIEW</button>
</div>
</div>
<div id="rightside">
<div id="content"></div>
<div id="colors">
<h3>COLOUR: 12 NATURAL</h3>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div id="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 id="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>
</select><br>
<p>In Stock</p>
</div>
</div>
<!-- <button>ADD TO CART</button> -->
<div id="btnDiv">
</div>
<div id="twoBtn">
<button>ADD TO WISH LIST</button>
<button>FIND STOCK IN STORE</button>
</div><br>
<hr>
<div id="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="down"></div>
</body>
</html>
<script src="./scripts/productinfo.js"></script>
<script type="module">
import footer from "./components/footer.js"
let downA =document.getElementById("down")
downA.innerHTML =footer()
</script>
<script type="module" src="./scripts/main.js">
</script>