Assignment 1
Assignment 1
Hobbies: Checkboxes
Submit: Button
Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Registration Form</title>
</head>
<body>
<h2>Registration Form</h2>
Design and Analysis of Algorithms 2
<label for="name">Name:</label>
<br><br>
<label for="password">Password:</label>
<br><br>
<label for="email">Email:</label>
<br><br>
<br><br>
<label>Gender:</label>
<label for="male">Male</label>
2 2
Design and Analysis of Algorithms 3
<label for="female">Female</label>
<br><br>
<label>Hobbies:</label>
<label for="reading">Reading</label>
<label for="traveling">Traveling</label>
<label for="gaming">Gaming</label>
<br><br>
<br><br>
<br><br>
<button type="submit">Submit</button>
</form>
3 3
Design and Analysis of Algorithms 4
</body>
</html>
4 4