-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
29 lines (29 loc) · 1.08 KB
/
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
29
<html>
<head>
<title>
web2
</title>
</head>
<body>
<form>
Name:<input type="text" placeholder="Enter Name"><br/>
Roll Number: <input type="number" placeholder="Enter Number"><br/>
E Mail: <input type="email" placeholder="Enter email"><br/>
Password: <input type="password" placeholder="password"><br/>
Re-Enter Password: <input type="password" placeholder="Re-enter Password"><br/>
Gender:<input type="radio">Male <br/>
<input type="radio">Others <br/>
Hobbies: <br/>
<input type="checkbox">Acting <br/>
<input type="checkbox">Reading articles<br/>
<select name="" id="">
<option value="India">India</option>
<option value="China">China</option>
<option value="US">US</option>
<option value="UAE">UAE</option>
</select>
<br/>
<input type="Button" value="Submit">
</form>
</body>
</html>