Write a HTML program to design a form which should allow to enter your personal data.
(Hint: make use of text field, password field, e-mail, lists, radio buttons, checkboxes, submit button)
<!DOCTYPE html>
<html>
<head>
<title>M2-R5.1 Set 3 Question 1</title>
</head>
<body>
<h1>Student Application Form</h1>
<form>
Candidate Name : <input type=”text” name=”sname”><br><br>
Father Name : <input type=”text” name=”fname”><br><br>
User Name : <input type=”password” name=”pass”><br><br>
E-mail : <input type=”email” name=”em”> <br><br>
Gender : <input type=”radio” name=”Gender” id=”ma”><label for=”ma”>Male</for><input type=”radio” name=”Gender” id=”fe”><label for=”fe”>Female</label><br>
Select Qualification: <input type=”checkbox” name=”h”>10th<input type=”checkbox” name=”e”>12th<input type=”checkbox” name=”l”>Grraduation<input type=”checkbox” name=”e”>Post Graduation<br>
Attach Document: <ol>
<li>10th Certificate</li>
<li>12th Certificate</li>
<li>Aadhaar Card</li>
</ol>
<input type=”submit” name=”sub” value=”SUBMIT”>
</form>
</body>
</html>