Write a program in HTML for displaying the following information on a web page. “Food Items” should be the title of the webpage. The heading “Food Menu” should be center aligned and in H2 format. The Font color of the list items should be blue and font size should be 14.The following items should be displayed in the given format:
Attachments:
Answers
Answered by
1
<html>
<head>
<title> Food Items </title>
</head>
<body>
<center> <h2> Food Menu </h2> </center>
<font color="blue" size="14">
<ol type="a">
<li>Chinese
<ul type =circle>
<li>Chowmein
<li>Fried Rice
</ul>
<li>Italian
<ul type = square>
<li>Pasta
<li>Pasta Arrabiatta
</ul>
</font>
</body>
</html>
Similar questions