Web Technology - Old Questions
6. Write HTML script for displaying table with following output.
5 marks
|
Asked in 2076
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<table border="1">
<tr>
<th>Drinks</th>
<th>Snacks</th>
</tr>
<tr>
<td>
<ol>
<li>Coke</li>
<li>Sprite</li>
</ol>
</td>
<td>Momo</td>
</tr>
<tr>
<td>
<ul>
<li>Milk</li>
<li>Coffe</li>
</ul>
</td>
<td>Chowmin</td>
</tr>
</table>
</body>
</html>