-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
36 lines (32 loc) · 967 Bytes
/
forms.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
<!DOCTYTPE html>
<html>
<body>
<h2 >REGISTRATION FORM </h2>
<form action="submission.html">
First name: <input type="text" value=""><br>
<br>
Last name: <input type="text" value=""><br>
<br>
Phone no.: <input type="number" value=""><br>
<br>
<br>
Choice of course: <input type="radio" Name="Choice of course" value="BACHELORS">BACHELORS
<input type="radio" Name="Choice of course" value="MASTERS">MASTERS
<br><br>
Description: <input type="text" value =""><br>
<br><br>
SUBJECT INTERESTS: <input type="checkbox" value ="Engineering">Engineering
   
<input type="checkbox" value ="B.sc">B.sc
   
<input type="checkbox" value ="B.com">B.com
   
<input type="checkbox" value ="MS">MS
   
<input type="checkbox" value =:MBA">MBA
   
<input type="checkbox" value ="M.tech">M.tech
<br> <br>        
<input type ="submit" value="submit">
</body>
</html>