Nothing Special   »   [go: up one dir, main page]

Admission Portal

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<html>

<style>
.table{
margin-left: 30%;
}
#para{
color: blue;
background-color: aquamarine;
}
.body{
text-align: center;
background-color:blanchedalmond;
}
</style>
<body class="body">
<h1 >WEB DESIGNING CLASSES</h1>
<h2 >Admission Form</h2>
<table class="table" border="1" cellpadding="30" >
<tr>
<td id="para">Enter Your Name:</td>
<td><input type="text"></td>
</tr>
<tr>
<td>Address:</td>
<td><textarea rows="5" cols="21"></textarea></td>
</tr>
<tr>
<td>Gender:</td>
<td>
<input type="radio">Male
<input type="radio" >Female
</td>
</tr>
<tr>
<td>Qualification:</td>
<td><select name="dropdown">
<option>B.E.</option>
<option>Commerce</option>
<option>Polytechnic</option>
</select></td>
</tr>
<tr>
<td id="para">Courses:</td>
<td>
<table>
<tr>
<td>
<input type="checkbox">Software
<input type="checkbox">DIGITAL MARKETING
<input type="checkbox">Web DESIGNING
<input type="checkbox">Software
</td>
</tr>
<tr>
<td>
<input type="checkbox">Linux
<input type="checkbox">Networking
</td>
</tr>
</table>

</td>
</tr>
<tr>
<td>Date:</td>
<td><input type="date"></td>
</tr>
<tr>
<td>Enter Email:</td>
<td><input type="email"></td>
</tr>
<tr>
<td>Enter File:</td>
<td><input type="file"></td>
</tr>
</table>
<input type="submit">
<input type="reset" value="cancel">
</body>
</html>

You might also like