0% found this document useful (0 votes)
49 views2 pages

My Page

The document contains an HTML page with multiple tables and forms. A table displays student data including name, branch, college and marks. Two forms are used to collect user login information with fields for username, password, options, courses, country, date, time and more. One form uses a table layout to organize the fields while the other uses line breaks. A link is also included to direct users to another page on the site.

Uploaded by

arjun mehra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
49 views2 pages

My Page

The document contains an HTML page with multiple tables and forms. A table displays student data including name, branch, college and marks. Two forms are used to collect user login information with fields for username, password, options, courses, country, date, time and more. One form uses a table layout to organize the fields while the other uses line breaks. A link is also included to direct users to another page on the site.

Uploaded by

arjun mehra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

<!

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>

You might also like