Write a HTML program to create a webpage to display
Attachments:
Answers
Answered by
2
<!DOCTYPE html>
<html>
<style>
table, th, td {
border:1px solid black;
}
</style>
<body>
<h2>Fruit Shop</h2>
<table style="width:100%">
<tr>
<th>Serial No.</th>
<th>Name</th>
<th>Price</th>
</tr>
<tr>
<td>1.</td>
<td>Apple</td>
<td>$50</td>
</tr>
<tr>
<td>2.</td>
<td>Banana</td>
<td>$40</td>
</tr>
<tr>
<td>3.</td>
<td>Grapes</td>
<td>$60</td>
</tr>
</table>
<p>Hope it helps :) </p>
</body>
</html>
Answered by
3
We have created a webpage using those given info.
Attachments:
Similar questions