HTML
Hypertext Markup Language
STUDENT REGISTRATION FORM
FIRST NAME | (Max 30 charecters a-z and A-Z) | |||
LAST NAME | (Max 30 charecters a-z and A-Z) | |||
DATE OF BIRTH | ||||
EMAIL ID | ||||
MOBILE NUMBER | (10 digit numbers) | |||
GENDER | female male | |||
ADDRESS | ||||
CITY | (Max 30 charecters a-z and A-Z) | |||
PIN CODE | (6 digit numbers) | |||
STATE | (Max 30 charecters a-z and A-Z) | |||
COUNTRY | ||||
HOBBIES |
DrawingsingingDanceingSketching Other |
|||
QUALIFICATION | SI.NO EXAMINATION | BOARD | PERCENTAGE | YEAR OF PASSING |
1.CLASS X | ||||
2.CLASSXII | ||||
3.GREGATION | ||||
4.MASTERS | ||||
COURESE APPLIED FOR | B.C.A B.COM B.SC B.A | |||
Source Code HTML
<html>
<head>
<title>Student Registration Form Using HTML</title>
<h1 align="center"><U><font color="vailat">STUDENT REGISTRATION FORM USING HTML</font></U></h1> </head> <body> <table border="0" bgcolor="#d693b2" cellpadding="5" cellspacing="5" align="center" width="1068px" height="1100px"> <font size="6" face="verdana" color="white"> <tr> <td> <font color="white"> FIRST NAME </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (Max 30 charecters a-z and A-Z) </font> </td> </tr> <tr> <td> <font color="white"> LAST NAME </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (Max 30 charecters a-z and A-Z) </font> </td> </tr> <tr> <td> <font color="white"> DATE OF BIRTH </font> </td> <td colspan="2"> <font color="white"> <select> <option>Day:</option> <option>Mon</option> <option>Tue </option> <option>Wed</option> </select> <select> <option>Month:</option> <option>jan</option> <option>feb </option> <option>mar</option> </select> <select> <option>Year:</option> <option>1997</option> <option>1998</option> <option>1999</option> <option>2000</option> </select> </font> </td> </tr> <tr> <td> <font color="white"> EMAIL ID </font> </td> <td> <input type="text"> </td> </tr> <tr> <td> <font color="white"> MOBILE NUMBER </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (10 digit numbers) </font> </td> </tr> <tr> <td> <font color="white"> GENDER </font> </td> <td> <font color="white"> female<input type="radio"> male<input type="radio"> </font> </td> </tr> <tr> <td> <font color="white"> ADDRESS </font> </td> <td> <textarea></textarea> </td> </tr> <tr> <td> <font color="white"> CITY </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (Max 30 charecters a-z and A-Z) </font> </td> </tr> <tr> <td> <font color="white"> PIN CODE </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (6 digit numbers) </font> </td> </tr> <tr> <td> <font color="white"> STATE </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (Max 30 charecters a-z and A-Z) </font> </td> </tr> <tr> <td> <font color="white"> COUNTRY </font> </td> <td> <input type="text"> </td> </tr> <tr> <td> <font color="white"> HOBBIES </font> </td> <td colspan="2"> <font color="white"> Drawing<input type="checkbox">singing<input type="checkbox"> Danceing<input type="checkbox">Sketching<input type="checkbox"><br>Other<input type="checkbox"><input type="text"> </font> </td> </tr> <tr> <td> <font color="white"> QUALIFICATION </font> </td> <td> <font color="white"> SI.NO EXAMINATION </font> </td> <td> <font color="white"> BOARD </font> </td> <td> <font color="white"> PERCENTAGE </font> </td> <td> <font color="white"> YEAR OF PASSING </font> </td> </tr> <tr> <td> </td> <td> <font color="white"> 1.CLASS X </font> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> </tr> <tr> <td> </td> <td> <font color="white"> 2.CLASSXII </font> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> </tr> <tr> <td> </td> <td> <font color="white"> 3.GREGATION </td> <td> <input type="text"> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> </tr> <tr> <td> </td> <td> <font color="white"> 4.MASTERS </font> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> </tr> <tr> <td> <font color="white"> COURESE APPLIED FOR </font> </td> <td> <font color="white"> B.C.A<input type="radio"> B.COM<input type="radio"> B.SC<input type="radio"> B.A<input type="radio"> </font> </td> </tr> <tr> <td colspan="5" align="center"> <font color="white"> <input type="submit" value="Submit"> <input type="Reset" value="Reset"> </font> </td> </tr> </font> </table> </body> </html>
<head>
<title>Student Registration Form Using HTML</title>
<h1 align="center"><U><font color="vailat">STUDENT REGISTRATION FORM USING HTML</font></U></h1> </head> <body> <table border="0" bgcolor="#d693b2" cellpadding="5" cellspacing="5" align="center" width="1068px" height="1100px"> <font size="6" face="verdana" color="white"> <tr> <td> <font color="white"> FIRST NAME </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (Max 30 charecters a-z and A-Z) </font> </td> </tr> <tr> <td> <font color="white"> LAST NAME </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (Max 30 charecters a-z and A-Z) </font> </td> </tr> <tr> <td> <font color="white"> DATE OF BIRTH </font> </td> <td colspan="2"> <font color="white"> <select> <option>Day:</option> <option>Mon</option> <option>Tue </option> <option>Wed</option> </select> <select> <option>Month:</option> <option>jan</option> <option>feb </option> <option>mar</option> </select> <select> <option>Year:</option> <option>1997</option> <option>1998</option> <option>1999</option> <option>2000</option> </select> </font> </td> </tr> <tr> <td> <font color="white"> EMAIL ID </font> </td> <td> <input type="text"> </td> </tr> <tr> <td> <font color="white"> MOBILE NUMBER </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (10 digit numbers) </font> </td> </tr> <tr> <td> <font color="white"> GENDER </font> </td> <td> <font color="white"> female<input type="radio"> male<input type="radio"> </font> </td> </tr> <tr> <td> <font color="white"> ADDRESS </font> </td> <td> <textarea></textarea> </td> </tr> <tr> <td> <font color="white"> CITY </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (Max 30 charecters a-z and A-Z) </font> </td> </tr> <tr> <td> <font color="white"> PIN CODE </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (6 digit numbers) </font> </td> </tr> <tr> <td> <font color="white"> STATE </font> </td> <td> <input type="text"> </td> <td colspan="3"> <font color="white"> (Max 30 charecters a-z and A-Z) </font> </td> </tr> <tr> <td> <font color="white"> COUNTRY </font> </td> <td> <input type="text"> </td> </tr> <tr> <td> <font color="white"> HOBBIES </font> </td> <td colspan="2"> <font color="white"> Drawing<input type="checkbox">singing<input type="checkbox"> Danceing<input type="checkbox">Sketching<input type="checkbox"><br>Other<input type="checkbox"><input type="text"> </font> </td> </tr> <tr> <td> <font color="white"> QUALIFICATION </font> </td> <td> <font color="white"> SI.NO EXAMINATION </font> </td> <td> <font color="white"> BOARD </font> </td> <td> <font color="white"> PERCENTAGE </font> </td> <td> <font color="white"> YEAR OF PASSING </font> </td> </tr> <tr> <td> </td> <td> <font color="white"> 1.CLASS X </font> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> </tr> <tr> <td> </td> <td> <font color="white"> 2.CLASSXII </font> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> </tr> <tr> <td> </td> <td> <font color="white"> 3.GREGATION </td> <td> <input type="text"> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> </tr> <tr> <td> </td> <td> <font color="white"> 4.MASTERS </font> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> <td> <input type="text"> </td> </tr> <tr> <td> <font color="white"> COURESE APPLIED FOR </font> </td> <td> <font color="white"> B.C.A<input type="radio"> B.COM<input type="radio"> B.SC<input type="radio"> B.A<input type="radio"> </font> </td> </tr> <tr> <td colspan="5" align="center"> <font color="white"> <input type="submit" value="Submit"> <input type="Reset" value="Reset"> </font> </td> </tr> </font> </table> </body> </html>