forked from mr-robot-2008/html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudent'sForm.html
More file actions
58 lines (57 loc) · 1.89 KB
/
Student'sForm.html
File metadata and controls
58 lines (57 loc) · 1.89 KB
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
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<title>Student's details</title>
</head>
<body>
<h1 align="center">Fill the form immediately</h1>
<form action="">
<h1>Student's details</h1>
<legend>Name: <input type="text" name="Name"></legend>
<p>Roll No. : <input type="number" name="Rollnumber"></p>
<fieldset style="background-color:lavender ;">
<legend style="background-color: thistle;">Gender</legend>
<p>Male <input type="radio" name="gender"> Female <input type="radio" name="gender" </p>
</fieldset>
<p>Address :
<textarea name="Address" cols="50" rows="10"></textarea>
</p>
<p>Email: <input type="email" name="email"></p>
<p>Branch:
<select name="branch">
<option>CSE</option>
<option>IT</option>
<option>ECE</option>
<option>ME</option>
</select>
</p>
<p>
12th Percentage: <input type="number" name="percentage">
</p>
<fieldset>
<legend>Stream</legend>
<p>
Science <input type="radio" name="Group"> Commerce <input type="radio" name="Group">
<p>
<h4>Carrier Options</h4>
<select name="options">
<option></option>
<option>Doctor</option>
<option>Scientist</option>
<option>Engineering</option>
</select>
<select name="options">
<option></option>
<option>Banking</option>
<option>Marketing</option>
<option>business analyst</option>
</select>
</p>
</p>
</fieldset>
<P align="center"><input type="submit" value="Submit"></P>
</form>
<hr>
<a href="site.html">HOME</a>
</body>
</html>