design an html program to create a table containing veg or non veg items along with its rate it must have a heading in the header it should display the name of the restaurant with a background color orange
Answers
Answered by
1
<html>
<head>
<title> logo </title>
<html>
<head>
<title> restaurant menu </title>
</head>
<body bgcolor = "orange">
<hr width = "75%">
<h1 align = "center"> restaurant </h1>
<hr width = "50%">
<br>
<table border = "+5" align = "center" cellspacing = "10">
<tr >
<th>veg </th>
<th>price </th>
<th>non-veg </th>
<th>price </th>
</tr>
<tr >
<td>name of veg food item </td>
<td>price </td>
<td>name of non-veg food item </td>
<td>price </td>
</tr>
<tr>
<td>panner </td>
<td> Rs 500 </td>
<td>tandoori</td>
<td>700 </td>
<tr>
<td>momos </td>
<td> Rs 50 </td>
<td>chiken momos</td>
<td>70 Rs </td>
</tr>
</table>
</body>
</html>
Similar questions