-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdellivery.html
82 lines (75 loc) · 3.14 KB
/
dellivery.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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="checkoutcss/dellivery.css">
<link rel="icon" type="image/x-icon" href="https://www.1mg.com/images/tata_1mg_logo.svg">
<title>Cart | 1mg</title>
<style>
#navbar1{
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px;
background-color: white;
}
#navbar1>a{
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<div id="navbar1">
<img src="https://www.1mg.com/images/tata_1mg_logo.svg" alt="">
<a href="">Need Help?</a>
</div>
<div id="container">
<div id="left">
<h3>Choose delivery option(s)</h3>
<div id="choose">
<p>Choose a delivery speed</p>
<div>
<input type="radio" name="speed" id="radio1">
<label for="speed" id="speed"></label>
</div>
</div>
<div>
<p id="footer">
*NeuCoins will be credited 7 days after your
complete order is delivered in case of Products
and in case of Lab Services NeuCoins will be credited
within 24 hours from the time of generation of test report. NeuCoins
will not be credited in case a return request is initiated for the order.
NeuCoins are rounded to the nearest integer and the value of NeuCoins
earned may change if total order value changes. <br><br>
**Coupon Discount value may change if the total order value changes. <br><br>
***Items in your cart will always reflect the most recent price as compared to the prices in their product detail page.
</p>
</div>
</div>
<div id="right">
<div id="select">
<span>Select Address</span>
<button id="change">CHANGE</button>
</div>
<div id="append_add">
</div>
<div id="btn">
<button id="continue">CONTINUE</button>
</div>
<div id="footer2">
<p>
Tata 1mg 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 personel to be his agent for delivery of the goods. For details read <a href="">terms and conditions</a>.
</p>
</div>
</div>
</div>
</body>
</html>
<script src="checkoutscript/dellivery.js" ></script>