-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproductDetails.html
106 lines (94 loc) · 3.65 KB
/
productDetails.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
<!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></title>
<link rel="stylesheet" href="./styles/productDetails.css">
</head>
<body>
<div id="navbar"></div>
<!-- Product Description -->
<div id="container">
<!-- Image section -->
<div>
<img src="" alt="">
</div>
<!-- Product Details -->
<div>
<br>
<!-- Image Name -->
<div id="pName"><h2></h2></div>
<!-- packsize -->
<p id="packsize"></p>
<br>
<!-- Image Rating -->
<div id="ratingSection">
<button id="rating"></button> 
<p id="rating_count"></p>
</div>
<br>
<h3>Product highlights</h3>
<br>
<!-- product heading -->
<div id="highLight">
<ul>
<li>Read the label carefully before use.</li><br>
<li>Store in a cool and dry place away from direct sunlight.</li><br>
<li>Keep out of reach of children.</li>
</ul>
</div>
</div>
<!-- Bill Section -->
<div>
<div id="bill">
<div id="radio1">
<input type="radio">   <h2>₹<span id="mr"></span></h2>   <h3 id="pr" style="text-decoration: line-through"></h3>     <h3 id="grn"><span id="dis"></span>% off</h3>
</div>
<div id="radio2">
<input type="radio">   <h2>₹<span id="mr"></span></h2>  <p>+ free shipping and 5% Extra <br>NeuCoins with <img src="https://res.cloudinary.com/du8msdgbj/image/upload/v1613645053/marketing/phb2bz61etrdmuurfdoq.png" alt=""><img src="https://img.1mg.com/images/info_icon.svg" alt=""></p>
</div>
<br>
<br>
<div id="taxe">
<p>Inclusive of all taxes</p>
</div>
<br>
<br>
<div id="pack">
<select name="" id="combo">
<option value="">1 Combo pack</option>
<option value="">2</option>
<option value="">3</option>
<option value="">4</option>
<option value="">5</option>
<option value="">6</option>
<option value="">7</option>
</select>
    <p>of 2 Packs</p>
</div>
<br>
<br>
<div id="addCard">
<button id="cart_btn">ADD TO CART</button>
</div>
</div>
<br>
<div id="delivery">
<h3>Earliest delivery by <span id="green">1pm, Tomorrow</span></h3>
<br>
<p>Delivering to:110020, New Delhi</p>
</div>
</div>
</div>
<!-- footer section -->
<div id="footer"></div>
<div id="footer1">
<h3>India's only LegitScript and ISO/ IEC 27001 certified online healthcare platform</h3>
<br>
<p>© 2022 Tata 1mg. All rights reserved. In compliance with Drugs and Cosmetics Act, 1940 and Drugs and Cosmetics Rules, 1945, we don't process requests for Schedule X and other habit forming drugs.</p>
</div>
</body>
</html>
<script type="module" src="./scripts/productDetails.js"></script>