You are on page 1of 1

<!

DOCTYPE html>
<html>
<body>

<h2>CLASS XI REGISTRATION FORM</h2>


<form><ol type=1>
<li>First name:<input type="text" id="fname" name="fname"></li><br>
<li>Father's name:<input type="text" id="lname" name="fname"></li><br>
<li>Address: <input type="text" id="fname" name="fname"></li><br>
<li>Contact No.:<input type="text" id="fname" name="fname"></li><br>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>

</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called
"/action_page.php".</p>

</body>
</html>

You might also like