-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
57 lines (47 loc) · 1.63 KB
/
payment.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
<!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="payment.css">
</head>
<body>
<form action="action">
<h1>Payment</h1>
<label for="name">First Name</label>
<br>
<input class="box1" type="text" name="name" id="name" placeholder="Smitha">
<br>
<label for="Name">Last Name</label>
<br>
<input class="box1" type="last" name="last" id="last" placeholder="Singh">
<br>
<label for="cardnum">Card Number</label>
<br>
<input class="box1" type="number" name="number" id="number" placeholder="1234 1234 1234 1234 ">
<br>
<div class="div1">
<label for="cardex">Expiry Date</label>
<br>
<input class="box2" type="date" name="date" id="date" placeholder="01/2023">
<br>
</div>
<div class="div1">
<label for="cvv">CVV</label>
<br>
<input class="box2" type="cvv" name="cvv" id="CVC" placeholder="cvc">
<br>
</div>
<div class="div1">
<label for="num">ZIP Code</label>
<br>
<input class="box2" type="code" name="code" id="code" placeholder="000-123">
<br>
</div>
<button class="btn" type="button">Pay Now</button>
<button class="btn" type="button">Close</button>
</form>
</body>
</html>