You are on page 1of 10

Project 1

Source Code

<html>

<body>

<table border="3">

<tralign="center"valign="middle'>

<th>ADMNO</th>

<th>NAME</th>

<th>SNAME</th>

<th>DOB</th>

</tr>

<tralign="left"valign="bottom">

<td>1005</td>

<td>ARNAV</td>

<td>BISHNOI</td>

<td>02-MARCH-2005</td>

</tr>

<tralign="left"valign="bottom">

<td>1005</td>

<td>ABHISHEK</td>

<td>BISHNOI</td>

<td>25-APRIL-2002</td>

</tr>

</table>

</body>
</html>

ADMNO NAME SNAME DOB


1005 ARNAV BISHNOI 02-MARCH-2005
1005 ABHISHEK BISHNOI 25-APRIL-2002

Project 2

<html>
<body>
<table border="2" align="left">
<tr>
<td>ROLL NUMBER</td>
<td>NAME</td>
<td>CLASS</td>
</tr>
<tbody>
<tr>
<td>100</td>
<td>POPPY</td>
<td>10A</td>
</tr>
<tr>
<td>101</td>
<td>ARNAV</td>
<td>10B</td>
</tr>
<tr>
<td>102</td>
<td>ADITYA</td>
<td>10 B</td>
</tr>
</table>
</body>
</html>
<tr>

ROLL NUMBER NAME CLASS


100 POPPY 10A
101 ARNAV 10B
102 ADITYA 10 B

Project 3

<html>
<body>
<table border="1" width="400">
<tr align="right">
<th>MOVID</th>
<th>MOVNAME</th>
<th>ACTORS</th>
</tr>
<tr align="left">
<td>M001</td>
<td>HIT FACTORY</td>
<td>4</td>
</tr>
</table>
</body>
</html>

MOVID MOVNAME ACTORS


M001 HIT FACTORY 4
M002 MISSION MANGAL 4
M003 BHARAT 4

Practical 4

<html>

<body>

<hr width="100%">

<b> This Experiment Demonstrate list of Fruits </b>

<ul>

<li>MANGO</li>
<li>APPLE</li>

<li>GRAPES</li>

</ul>

</body>

</html>

This Experiment Demonstrate list of Fruits

 MANGO
 APPLE
 GRAPES

Practical 5

<html>

<head><title>INTERNAL LINKING</title>

</head><body>

<b> This Experiment Demonstrate Linking Of Page </b>

<h1>Linking in a page</h1>
<h3>Click here to go to the

<a href="#bottom">bottom</a>of the page.</h3>

<br><br><br><br><br><br><br><br><br><br><br

<br>

<br><br><br><br><br><br><br><br><br><br><br

<br>

<br><br><br><br><br><br><br><br><br><br><br

<br>

<br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br><br><br><br><br><br><br><br><br><br><br><br

<br>

<a name="bottom"><h3>You are at the bottom of the page.</h3></a>

</body>

</html>
Project 9

<html>
<body>
<table bgcolor="red" font="black" border="3">
<b>
<tr>
<th>Name</th>
<th>Favorite Colour</th>
</tr>
<tr>
<td>Bob</td>
<td>Yellow</td>
</tr>
<tr>
<td>Michelle</td>
<td>Purple</td>
</tr>
</b>
</table>
</body>
</html>
Project 10

<html>

<body>

<table border="3">

<caption>A COMPLEX TABLE</caption>

<thead>

<tr>

<th colspan="3">Invoice #123456789</th>

<th>14 November 2019</th>

</tr>

<tr>

<td colspan="2">

<strong>Pay to:</strong>

<br>2nd Floor <br> Hill View Society <br><br> Adai </td>

<td colspan="2">
<strong>Customer:</strong><br> Arnav Bishnoi <br>202 A <br> Adai 410206 </td>

</tr>

</thead>

<tbody>

<tr>

<th>Name / Description</th>

<th>Qty.</th>

<th>@</th>

<th>Cost</th>

</tr>

<tr>

<td>Paperclips</td>

<td>1000</td>

<td>0.01</td>

<td>10.00</td>

</tr>

<tr>

<td>Staples (box)</td>

<td>100</td>

<td>1.00</td>

<td>100.00</td>

</tr>

</tbody>

<tfoot>

<tr>
<th colspan="3">Subtotal</th>

<td> 110.00</td>

</tr>

A COMPLEX TABLE
Invoice #123456789 14 November 2019
Pay to:
Customer:
2nd Floor
Arnav Bishnoi
Hill View Society
202 A
Adai 410206
Adai
Name / Description Qty. @ Cost
Paperclips 1000 0.01 10.00
Staples (box) 100 1.00 100.00
Subtotal 110.00
GST 8% 8.80
Grand Total Rs.118.80

You might also like