<!
DOCTYPE>
<html>
<head> <title> My HTML Page </title> </head>
<body>
<table border="1" width="60%">
<tr><td>SrNo</td><td>Name</td><td>Branch</td>
<td>College</td><td>Marks</td></tr>
<tr><td>1</td><td>A</td><td rowspan="3">CSE</td>
<td>ABES</td> <td>50</td></tr>
<tr><td>2</td><td>B</td> <td>JSS</td> <td>30</td></tr>
<tr><td>3</td><td>C</td><td>AKG</td> <td>45</td></tr>
<tr><td>4</td><td>D</td><td>IT</td> <td colspan="2"
rowspan="2">NA</td> </tr>
<tr><td>5</td><td>E</td><td>IT</td> </tr>
</table>
<a href="second.html" target="_blank"> Click here </a>to show
the DataRitz courses.
<h1> Form Designing </h1>
<form>
User Name<input type="text" name="n" placeholder="User Name">
<br>
Password <input type="password" name="p"><br>
Option <input type="radio" name="op">A<input
type="radio" name="op">B<input type="radio" name="op">C <br>
courses <input type="checkbox" name="co">C++<input
type="checkbox" name="co">java <br>
country <select>
<option>Select</option>
<option>india</option>
<option>AUS</option>
<option>RUS</option>
<option>china</option>
</select>
<br>
Date <input type="date"><br>
time <input type="time"><br>
email <input type="email" placeholder="abes.ac.in">
<br>
Review <textarea rows="5" cols="20">Enter Review Here
</textarea><br>
<input type="submit" value="Login">
<input type="reset" >
</form>
<form>
<table>
<tr><td>User Name : </td><td><input type="text" name="n"></td>
</tr>
<tr><td>Password : </td><td><input type="password" name="p">
</td></tr>
<tr><td></td><td><input type="submit" value="Login"><input
type="reset"></td><tr>
</table>
</form>
</body>
</html>