-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbilling address.html
62 lines (53 loc) · 2.08 KB
/
billing address.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="bill.css">
</head>
<body>
<div class="container">
<form action="">
<div class="row">
<div class="col">
<h3 class="title">Billing address</h3>
<div class="input">
<span>full name:</span>
<input placeholder="JOHN CALEB">
</div>
<div class="input">
<span>email:</span>
<input type="text" placeholder="[email protected]">
</div>
<div class="input">
<span>Address:</span>
<input type="text" placeholder="city">
</div>
<div class="input">
<span>TEL NO:</span>
<input type="text" placeholder="0706709332">
</div>
</div>
<div class="col">
<h3 class="title">Payment</h3>
<div class="input">
<span>cards accepted:</span>
<img src="Images\png-clipart-payment-debit-card-credit-card-business-paypal-credit-card-text-service.png" alt="">
</div>
<div class="input">
<span>Name of Card:</span>
<input type="text" placeholder=" mr.john caleb">
</div>
<div class="input">
<span>Credit Card number:</span>
<input type="number" placeholder="4353-6353-6353-4353">
</div>
<div class="input">
<span>Exp Month:</span>
<input type="text" placeholder="january">
</div>
</div>
</div>
<a href="alert.html" class="submit-btn">Proceed to Check out</a>
</form>
</div>
</body>
</html>