JS_Practical_06
JS_Practical_06
1.<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h1>Registration Form</h1>
<form>
<label for="email">Email:</label>
<label for="password">Password:</label>
<label>Gender:</label>
<label for="male">Male</label>
<label for="female">Female</label><br><br>
<label for="country">Country:</label>
<option value="India">India</option>
</select><br><br>
<label for="bio">Bio:</label><br>
</form>
</body>
</html>
• Out Put