-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPROJECT3.html
40 lines (40 loc) · 1.47 KB
/
PROJECT3.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
<!DOCTYPE html>
<html>
<head>
<title>
PAYMENT FORM
</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<form action="">
<h1><b>PAYMENT FORM</b></h1>
<p>
<label for="fname">First name: * </label><br>
<input type="text" id="fname" name="fname" required><br>
<label for="lname">Last name: * </label><br>
<input type="text" id="lname" name="lname" required> </p>
<fieldset>
<legend>Gender</legend>
<p>
Male <input type="radio" name="gender" id="male">
Female <input type="radio" name="gender" id="female">
</p>
</fieldset>
<p>ADDRESS: * <textarea name="ADDRESS" col="30" rows="5"></textarea></p>
<p>E-MAIL: * <input type="email" id="" required></p>
<br>
<br>
<p>Card Type:
<select name="card_type" size="3" id="card_type" required>
<option value="">Select a card type</option>
<option value="Visa">Visa</option>
<option value="Mastercard">Mastercard</option>
<option value="Payment">Payment</option>
</select>
</p>
<p>Card Number: * <input type="number" name="card_number" id="card_number" required></p>
<p>Expiration Date: * <input type="date" name="exp_date" id="exp_date" required></p>
<p>CVV: * <input type="password" name="cvv" id="cvv" required></p>
<input type="submit" value="Pay Now"><br>
</form>
</html>