forked from NituPawar/Seminar_II2024-25
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
47 lines (36 loc) · 1.46 KB
/
Copy pathform.html
File metadata and controls
47 lines (36 loc) · 1.46 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
<!DOCTYPE html>
<html>
<body>
<h2>Student Forms</h2>
<form>
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname" value="first name">
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname" value="last name">
<p>Please Enter First Letter Capital.</p>
<h3>Classes</h3>
<input type="radio" id="8 Class" name="Your_Class" value="8">
<label for="8th">8th Std</label><br>
<input type="radio" id="9 Class" name="Your_Class" value="9">
<label for="9th">9th Std</label><br>
<input type="radio" id="10 Class" name="Your_Class" value="10">
<label for="10th">10th Std</label>
<p>Select a Correct Class.</p>
<h3>Subjests Name</h3>
<input type="checkbox" id="His" name="His" value="His">
<label for="History"> History </label><br>
<input type="checkbox" id="Geo" name="Geo" value="Geo">
<label for="Geo"> Geography</label><br>
<input type="checkbox" id="Hin" name="Hin" value="Hin">
<label for="Hin"> Hindi </label><br>
<input type="checkbox" id="Eng" name="Eng" value="Eng">
<label for="Eng"> English</label><br>
<input type="checkbox" id="Mar" name="Mar" value="Mar">
<label for="Mar"> Marathi </label><br>
<input type="checkbox" id="Math" name="Math" value="Math">
<label for="Math"> Mathmatics </label><br>
<input type="checkbox" id="San" name="San" value="San">
<label for="San"> Sanskrat </label>
<P>Select Your Subjects.</P>
</body>
</html>