application form html 2
<html>
<head>
<style>
table,th,td
{
border: 0.5px solid black;
padding: 18px;
}
table{text-align:center;}
tr{text-align: center;]
</style>
<title>Home assignment 2</title>
</head>
<body bgcolor="Burlywood">
<font face="Century Gothic">
<h1 align="center"><u>Registration Form</u></h1>
<marquee><h3>Finish this simple registration form. This website is brought to you by
HTML. Created by Y.SRI DATTA SHANMUKH SAI of section 04</h3></marquee>
<form action="/action_page.php">
<table>
<tr>
<td>ID Number:</td>
<td>
<input type="phone" placeholder="22000*****">
</td>
</tr>
<tr>
<td>First Name:</td>
<td>
<input type="text" placeholder="">
</td>
</tr>
<tr>
<td>Last Name:</td>
<td>
<input type="text" placeholder="">
</td>
</tr>
<tr>
<td>Email:</td>
<td>
<input type="text" placeholder="">
</td>
</tr>
<tr>
<td>password:</td>
<td>
<input type="password" placeholder=" ">
</td>
</tr>
<tr>
<td>Phone number:</td>
<td>
<input type="phone" placeholder="+91">
</td>
</tr>
<tr>
<td>GENDER:</td>
<td>
<input type="radio" name="gender"> M
<input type="radio" name="gender"> F
</td>
</tr>
<tr>
<td>Languages known:</td>
<td>
<input type="checkbox"> ENGLISH
<input type="checkbox"> TELUGU
<input type="checkbox"> HINDI
<input type="checkbox"> URDU
<input type="checkbox"> MARATI
<input type="checkbox"> MANDARIAN
<input type="checkbox"> Arabic
</td>
</tr>
<tr>
<td>YEAR:</td>
<td>
<select>
<option>SELECT</option>
<option>1st</option>
<option>2nd</option>
<option>3rd</option>
<option>4th</option>
<option>5th</option>
</select>
</td>
</tr>
<tr>
<td>HIGHEST QUALIFICATION:</td>
<td>
<select>
<option>NOT APPLICABLE</option>
<option>10th</option>
<option>INTER</option>
<option>GRADUATION</option>
<option>POST GRADUATION</option>
</select>
</td>
</tr>
<tr>
<td>ADDRESS:</td>
<td>
<textarea cols="30" rows="10"></textarea>
</td>
</tr>
</style>
</table>
<tr>
<td>
<br>
<input type="submit" placeholder="submit">
<input type="reset" placeholder="reset">
</td>
</tr>
</form>
</body>
</html>
Comments
Post a Comment