-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproduct_detail.html
104 lines (102 loc) · 4.42 KB
/
product_detail.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
<!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>Details</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles/product_detail.css">
</head>
<body>
<div id="navbar">
</div>
<div id="content">
<!-- <img src="https://images.contentstack.io/v3/assets/blt7841d2a593726d96/blt1c11a0eee46b8af9/63923e8c5ccf102f82dec23e/121222_HolidaySale_Sitewide_Desktop_2.jpg?format=pjpg&auto=webp" alt=""> -->
<p>Home / Categories / All Men's / Sports Wear</p>
<div id="product">
<div id="image"></div>
<div id="data">
<h2 id="title"></h2>
<div id="small">
<span class="fa fa-star checked"></span>
<p id="rating">
</p>
<p>6 Reviews</p>
<p id="brand"></p>
<p>0 Answered Questions</p>
<p id="code"></p>
</div>
<h2 id="price"></h2>
<div id="off">
<p id="hov">2% OFF New User</p>
<p onclick="go_to_cop">Get Coupons</p>
</div>
<div id="show_offer">
<h2>New User Coupon</h2>
<div>
<div>
<p>2% OFF, max save $10</p>
<p>Valid only for 7 days after received</p>
</div>
<div>
<button>Get Now</button>
</div>
</div>
</div>
<div id="from">
<p>Ship From:</p>
<p id="from_country"></p>
</div>
<div id="qty">
<p>QTY:</p>
<div id="qty_button">
<p id="plus">+</p>
<p id="number"></p>
<p id="minus">-</p>
</div>
</div>
<div id="ship">
<p>Shipping:</p>
<p>Can ship to</p>
<select name="" id="select">
<option value="">India</option>
<option value="">China</option>
<option value="">USA</option>
</select>
</div>
<div id="buton">
<button id="btn1">Add to Cart</button>
<button id="btn2">Buy Now</button>
</div>
<div id="payment">
<p>Payment</p>
<img src="https://1000logos.net/wp-content/uploads/2021/04/Paypal-logo.png" alt="">
</div>
</div>
</div>
<div id="below">
<h2 id="descrip">Description</h2>
<h2 id="rev">Review</h2>
<h2 id="qa">Q&A</h2>
</div>
<div id="below_content">
<p>
<p class="des">Note</p>
When you expect conditions on the trail to change from sunny to rainy to slightly cool, have a shirt that adjusts with you. The Trailhead does just that through every aspect of its construction.
<br>
<p class="des">Highlights</p>
<ul>
<li>Fabric: 100% nylon with 100% polyester mesh</li>
<li>100% polyester mesh lining at upper back for cooling airflow; vents at back near armholes allow airflow</li>
<li>Soft, durable, wrinkle-resistant 100% Supplex nylon ripstop fabric feels like cotton</li>
<li>Vertical welt pocket at left chest with zipper closure</li>
<li>Machine wash cold, gentle cycle; tumble dry low</li>
<li> Moisture wicking, quick drying, and breathable to keep you comfortable. Roll-up sleeves secure with button tab and loop</li>
</ul>
</p>
</div>
</div>
</body>
</html>
<script type="module" src="scripts/product_detail.js"></script>