Questions: 
Explain the way using HTML Code in which data can be presented in a tabular form as given below: NU-2016


how-to-create-table-using-html

Source Code:


<!DOCTYPE html>
<html>
<head>
<title></title>
</head>

<body>
<table border="1" width="400px">

<tr>
<th>Home</th>
<th>Food Menu</th>
<th>Price</th>
</tr>

<tr>
<td>KFC</td>

<td>
<p>Pizza</p>
<p>Biriyani</p>
</td>

<td>
<p>300Tk</p>
<p>200Tk</p>
</td>

</tr>
</table>

</body>
</html>


Screenshots of Source Code(Sublime Text):


How to create a table using html
How to create a table using html


Screenshots of Output(Browser):


How to create a table using html


Post a Comment

Previous Post Next Post