-
Notifications
You must be signed in to change notification settings - Fork 1
/
checkout.html
77 lines (66 loc) · 2.32 KB
/
checkout.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
<!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>Document</title>
<link rel="stylesheet" href="../css/checkout.css">
</head>
<body>
<div>
<h1 id="a"><b>TOMTOP</b></h1>
<h4 id="b"><b>Loving . Shopping . Sharing</b></h4>
</div>
<div class="container">
<div class="left">
<form id="data">
<p>Enter Name</p>
<input class="names" type="text" placeholder="Enter Name Here"><br>
<p>Enter Phone No.</p>
<input class="mobile" type="text" placeholder="Enter mobile no. here">
<p>Enter Delivery address</p>
<textarea name="" id="" cols="30" rows="10"></textarea>
<p>Select Payment Options</p>
<select name="Payment Options" id="option">
<option value=""> Select Payment Option</option>
<option value="card">Credit/Debits Cards</option>
<option value="upi">UPI</option>
<option value="Paypal">Paypal</option>
<option value="netbanking">Net banking</option>
<option value="Wallet Apps">PaytmWallets,Mobiquick,etc</option>
</select>
<br>
<input id="submit" type="submit" value="submit">
</form>
<h5>Have A coupon Code Enter Here:-</h5>
<input id="promo" type="text">
<br>
<input type="submit" id="code">
</div>
<div class="right">
<table>
<thead>
<tr>
<th>
No. of Products
</th>
<th>
Name
</th>
<th>
Price
</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h3>Total</h3><span></span>
<button>Proceed To Payment</button>
</div>
</div>
</div>
</body>
</html>
<script src="../js/checkout.js"></script>