forked from ArjunVaskale/html_program
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.html
More file actions
22 lines (20 loc) · 754 Bytes
/
registration.html
File metadata and controls
22 lines (20 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<title>registration form</title>
</head>
<body><center>
<form action="test.html" method="get">
Name: <input type="text" placeholder="enter your name" id="name" name="name"><br>
Surname: <input type="text" placeholder="enter your surname" id="sur" name="sur"><br>
Gender: <input type="radio" id="m" name="g"> M
<input type="radio" id="f" name="g"> F<br>
Address:<textarea placeholder="enter your address" id=address" name="address"></textarea> <br>
Contact: <input type="number" maxlength="10" id="contact" name="contact"><br>
City: <select>
<option> Indore </option>
<option> Other </option>
</select><br>
<input type="submit" value="register">
</form>
</center></body>
</html>