Friday, January 17, 2020

Colspan & Rowspan

<html>
<head>
<title>This is my First web page</title>
</head>
<body>
<table border=1>
<tr>
<th rowspan=2>Item</th>
<th colspan=2>Price</th>
</tr>
<tr>
<th>small</th>
<th>Large</th>
</tr>
<tr>
<td>001</td>
<td>200</td>
<td>400</td>
</tr>
<tr>
<td>002</td>
<td>150</td>
<td>345</td>
</tr>
</table>
</body>
</html>

This is my First web page
Item Price
small Large
001 200 400
002 150 345

No comments:

Post a Comment

Assessment Paper 10

Vtapage.html <html> <head> <title> VTA </title> </head> <body> <h1> VTA <...