-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform.html
51 lines (47 loc) · 2.04 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>FORM</title>
</head>
<body style="background-color: beige;">
<h1 style="text-align: center;">FORM</h1>
<CENTER>
<fieldset style="width: max-content; background-color: blanchedalmond;">
<form style="text-align: center;">
<label for="name">NAME</label>
<input type="text" id="name" size="59"><br><br>
<lable for="class">CLASS</lable>
<input type="text">
<label for="branch">BRANCH</label>
<input type="text"><br><br>
<label for="bdaymonth">DOB:</label>
<input type="date" id="bdaymonth" name="bdaymonth">
Gender :
<label for="Male">Male</label>
<input type="radio" id="male" name="Gender" value="Male">
<label for="female">Female</label>
<input type="radio" id="female" name="Gender" value="Female">
<lable for="other">Other</lable>
<input type="radio" id="other" name="Gender" value="Other"> <br><br>
<lable for="Nationality">Nationality</lable>
<input list="Nationality" name="Nationality" size="10">
<datalist id="Nationality">
<option value="Indian">
<option value="Amarican">
<option value="Japanese">
<option value="Australian">
<option value="Russian">
</datalist>
Permanent Adress:
<textarea name="Permanent Adress" row="3" column="5"></textarea><br><br>
<label for="Mother Name">Mother's Name</label>
<input type="text" size="14">
<lable for="Father Name">Father's Name</lable>
<input type="text" size="14"> <br><br>
<input type="submit" value="submit">
<input type="reset" value="reset">
</form>
</fieldset>
</CENTER>
</body>
</html>