You are on page 1of 2

Q. No. :- 03) Create an online application form for admission process.

<html>
<head>
<title>registration form</title>
</head>
<body>
<tr> <th><h2 ALIGN="CENTER">Student Registration Form</h2></th></tr>
<form action="Welcome.html" method="post">
<table border="4" align="center" cellpadding="4" cellspacing="4" width="30%">
<tr><th><label for="user_name">User_Name: </label></th>
<th><input id="user_name" maxlength="50" name="name" type="text" /></th></tr>
<tr><th><label for="id">Id: </label></th>
<th><input id="id" maxlength="50" name="name" type="text" /></th></tr>
<tr><th><label for="password">Password:</label></th>
<th><input id="password" maxlength="50" name="password" type="password" /></th></tr>
<tr><th><label for="name">Name: </label></th>
<th><input id="name" maxlength="50" name="name" type="text" /></th></tr>
<tr><th><label for="surname">Surname: </label></th>
<th><input id="surname" maxlength="50" name="name" type="text" /></th></tr>
<tr><th><label for="father name">Father Name: </label></th>
<th><input id="father name" maxlength="50" name="name" type="text" /></th></tr>
<tr><th><label for="dob">DOB:</label></th>
<th><input id="dob" maxlength="50" name="username" type="text" /></th></tr>
<tr><th><label for="personal address">Personal Address: </label></th>
<th><input id="personal address" maxlength="70" name="course" type="text" /></th></tr>
<tr><th>Sex</th>
<th><input type="radio" name="sex" value="male" size="10">Male
<input type="radio" name="sex" value="Female" size="10">Female</th></tr>
<tr><th>City</th>
<th><select name="City">
<option value="-1" selected>select..</option> <option value="New Delhi">NEW DELHI</option>
<option value="Mumbai">MUMBAI</option> <option value="Goa">GOA</option>
<option value="Patna">PATNA</option></select></th></tr>
<tr><th><label for="pincode">Pincode: </label></th>
<th><input id="pincode" maxlength="50" name="course" type="text" /></th></tr>
<tr><th>Course</th>
<th><select name="Course">
<option value="-1" selected>select..</option> <option value="B.COM">B.COM</option>
Q. No. :- 03) Create an online application form for admission process.

<option value="MCA">MCA</option> <option value="MBA">MBA</option>


<option value="BCA">BCA</option> </select></th></tr>
<tr><th><label for="rolln0">Rollno: </label></th>
<th><input id="rollno" maxlength="50" name="rollno" type="text" /></th></tr>
<tr><th><label for="email">Email_Address:</label></th>
<th><input id="email" maxlength="50" name="email" type="text" /></th></tr>
<tr><th><label for="mobile number">Mobile Number:</label></th>
<th><input id="mobile number" maxlength="50" name="username" type="text" /></th></tr>
<tr><th><label for="aboutus">About Us:</label></th>
<th valign="middle" align="center"><textarea></textarea></th></tr>
<tr><th><input type="reset"></th>
<th colspan="2"><input type="submit" value="Submit Form" /></th></tr></table></form>
<center><b><p>Note: Please make sure your details are correct before submitting form and that all fields marked with *
are completed!.</p></b></center>
</body>
</html>

You might also like