-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form.html
39 lines (37 loc) · 975 Bytes
/
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
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Form</title>
</head>
<body>
<h1>Form</h1>
<p></p>
<form>
Username <input type="text" placeholder="Enter your Name" name="">
<br>
<br>
Password <input type="Password" placeholder="ur Password" name="">
<br><br>
male <input type="radio" name="gender">
female <input type="radio" name="gender">
<br><br>
Hobies <input type="Checkbox" name="">
<br><br>
Address <textarea rows="5" cols="20"></textarea>
<br><br>
dob<input type="date" name="">
<br><br>
Select ur Files <input type="file" name="">
<br><br>
Select ur Contry <select>
<option selected="selected" disabled="disabled">Selest ur Contry</option>
<option>India</option>
<option>Aus</option>
<option>China</option>
</select>
<br><br>
<input type="submit" value="Click Me" name="">
</form>
</body>
</html>