<!
DOCTYPE html>
<html>
<head>
<title>Student Registration Form</title>
</head>
<body>
<h1>Student Registration Form</h1>
<form action="#" method="post">
<!-- Name -->
<label for="name">Full Name:</label><br>
<input type="text" id="name" name="fullname" required><br><br>
<!-- Email -->
<label for="email">Email Address:</label><br>
<input type="email" id="email" name="email" required><br><br>
<!-- Course -->
<label for="course">Course:</label><br>
<select id="course" name="course" required>
<option value="">-- Select Course --</option>
<option value="BSIT">BSIT</option>
<option value="BSCS">BSCS</option>
<option value="BSIS">BSIS</option>
<option value="BSEMC">BSEMC</option>
</select><br><br>
<!-- Gender -->
<label>Gender:</label><br>
<input type="radio" id="male" name="gender" value="Male" required>
<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><br><br>
<!-- Submit Button -->
<input type="submit" value="Register">
</form>
</body>
</html>