-
Notifications
You must be signed in to change notification settings - Fork 1
/
order.html
61 lines (55 loc) · 2.33 KB
/
order.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
<!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>Order Summary</title>
<link rel="icon" type="image/" href="https://www.netmeds.com/assets/global/apple-touch-icon-48x48.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="CSS/navbar-footer.css">
<link rel="stylesheet" href="CSS/order.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/14e21b1c67.js" crossorigin="anonymous" defer></script>
</head>
<body>
<nav id="nav1"></nav>
<nav id="nav2"></nav>
<main>
<h2 id="cart-h2">Order Summary</h2>
<section id="grid-container">
<article>
<div id="slide">
<img src="https://www.netmeds.com/images/cms/aw_rbslider/slides/1643645870_Home_Bannerzdfsf.jpg"
alt="">
</div>
<div id="parent-div">
</div>
</article>
<article>
<div id="promo-code">
<p>APPLY PROMOCODE / NMS SUPERCASH</p>
<label for="promo">Apply Promo Code</label>
<select name="promo" id="promo">
<option value="30">MASAI30</option>
<option value="100">CASHBACK100</option>
</select>
</div>
<div id="payment">
</div>
<div id="terms">
Netmeds is a technology platform to facilitate transaction of business. The products and services
are offered for sale
by the sellers. The user authorizes the delivery personnel to be his agent for delivery of the
goods. For details read
<span>Terms & Condition</span>
</div>
</article>
</section>
</main>
<footer></footer>
<script src="JS/navbar-footer.js" type="module"></script>
<script src="JS/order.js" type="module"></script>
</body>
</html>