13. Write a programme using <form>,<label>,<input>,<select>

<html>

<head>

<title>First Programme</title>
</head></title>
<body>
<center>  
<form>
<label>First name </label> <input type="text"><br>
<label> Last name </label> <input type="text"><br>
<h4>Gender</h4><br>
<label> male </label><input type="radio" name="anything but same in both"><label>Female</label><input type="radio" name="anything but same in both">
<br>
<h4> Hobbies </h4><br>
<label>Badminton</label><input type="checkbox"><label>Football</label><input type="checkbox"><label>Hockey</label><input type="checkbox">
<label>Cricket</label><input type="checkbox"><br>
<label>Password</label><input type="password"><br>
<select> 
<option>Age</option>
<option>15</option>
<option>16</option>
<option>17</option>
<option>18</option>
<option>19</option>
<option>20</option>
<option>21</option>
<button>Submit</button>
</form>
     </html>

Gender


Hobbies