forked from chetannihith/Java-hacktoberfest23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment_form.html
28 lines (28 loc) · 871 Bytes
/
payment_form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Payment Form</title>
</head>
<body>
<form action="">
<h1>Payment Form</h1>
<h2>Contact Information</h2>
<p>Name: <input type="text" name="name" /></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" id="address" cols="100" rows="7"></textarea>
</p>
<p>Email: <input type="email" name="email" id="email" /></p>
<p>Pincode: <input type="number" name="pincode" id="pincode" /></p>
</form>
</body>
</html>