<!DOCTYPE html>
<html>
<head>
<title>Fillable Form</title>
<link="text/css" rel="stylesheet"
a href="style.css">
</head>
<body><div class="container">
<h1>Fillable Form</h1>
<form>
Name: <input type="text"><br><br>
* Email: <input type="email"required><br><br>
* Password: <input type="Password" required><br><br>
<fieldset>
<legend>Gender</legend>
<input type="radio" name="Gender" value="Male" id="Male">Male</input>
<input type="radio" name="Gender" value="Female" id="Female">Female</input>
</fieldset><br><br>
Phone no: <select>
<option value="+977" name="Nepal">+977</option>
<option value="+968" name="Oman">+968</option>
<option value="+945" name="China">+945</option>
<option value="+91" name="India">+91</option>
</select>
<input type="number"><br><br>
<input type="submit" name="Submit" Value="Submit">
</form></div>
</body>
</html>
