How to create a table using html
Questions:
Explain the way using HTML Code in which data can be presented in a tabular form as given below: NU-2016
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):
Screenshots of Output(Browser):
💬আরো পড়ুন এবং জানুন💬
No comments: