0% found this document useful (0 votes)
16 views2 pages

HTML Sample Code

The document is an HTML template for a Student Registration Form. It includes fields for the student's full name, email address, course selection, and gender options. The form requires input for all fields before submission.

Uploaded by

Maher Arakama
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views2 pages

HTML Sample Code

The document is an HTML template for a Student Registration Form. It includes fields for the student's full name, email address, course selection, and gender options. The form requires input for all fields before submission.

Uploaded by

Maher Arakama
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<!

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>

You might also like