0% found this document useful (0 votes)
15 views3 pages

Practical

The document contains a student registration form with fields for first name, last name, date of birth, gender, languages known, city, address, mobile number, email, password and retyped password. The form uses HTML elements like text boxes, radio buttons, checkboxes and dropdowns for users to enter the information.

Uploaded by

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

Practical

The document contains a student registration form with fields for first name, last name, date of birth, gender, languages known, city, address, mobile number, email, password and retyped password. The form uses HTML elements like text boxes, radio buttons, checkboxes and dropdowns for users to enter the information.

Uploaded by

Anonymous
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

STUDENT REGISTRATION FORM

<html>
<head>
<title>Student Registration Form</title>
</head>
<body bgcolor="yellow" text="Red">
<form>
<center>
<u><h1>STUDENT REGISTRATION FORM</h1></u>
<hr width =50% color="red">
<table border=1>
<tr>
<td>First Name :</td>
<td><input type="text" name="firstname" placeholder="Enter First
Name"></td>
</tr>
<tr>
<td>Last Name:</td>
<td><input type="text" name="lastname" placeholder="Enter Last
Name"></td>
</tr>
<tr>
<td>D.O.B:</td>
<td><input type="date" name="d.o.b"></td>
</tr>
<tr>
<td>Gender:</td>
<td>
<input type="radio" name="gender">Male<br>
<input type="radio" name="gender">Female<br>
<input type="radio" name="gender">Other<br>
</td>
</tr>
<tr>
<td>Languages Known:</td>
<td>
<input type="checkbox"> English<br>
<input type="checkbox"> Bengali<br>
<input type="checkbox"> Hindi<br>
<input type="checkbox"> Punjabi<br>
</td>
</tr>
STUDENT REGISTRATION FORM
<tr>
<td>Select your City :</td>
<td>
<select>
<option selected value="0">Select</option>
<option value="kolkata">Kolkata</option>
<option value="mumbai">Mumbai</option>
<option value="delhi">Delhi</option>
<option value="bangalore">Bangalore</option>
</select>
</td>
</tr>
<tr>
<td>Address:</td>
<td><textarea rows=10 cols=20>Enter Your
Address</textarea></td>
</tr>
<tr>
<td>Mobile No:</td>
<td><input type="text" name="country code" value="+91"
size="2"><input type="text" name="phone" size="10" maxlength="10"
Placeholder="Enter Mobile No">
</td>
</tr>
<tr>
<td>Email Id :</td>
<td><input type="email" id="email" name="email"
placeholder="Enter E-Mail Id"></td>
</tr>
<tr>
<td>Password :</td>
<td><input type="password" name="psw" required
placeholder="Enter Password"></td>
</tr>
<tr>
<td>Retype Password :</td>
<td><input type="password" name="psw-repeat" required
placeholder="Retype Password"></td>
</tr>
<tr>
<td>
<center><input type="button" value="SUBMIT"></center>
</td>
STUDENT REGISTRATION FORM
<td>
<center><input type="button" value="RESET"></center>
</td>
</tr>
</table>
</form>
</body>
</html>

OUTPUT SCREEN

You might also like