Computer Science, asked by divyanshisingh9090, 8 months ago

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 left aligned and in H2 format.
• The following items should be displayed in the given format:

Food Menu

• Chinese
• Chowmein
• Fried Rice
• Spring Rolls

Answers

Answered by GigaQuake07
3

Answer:

Please See the code below:

Explanation:

<html>

<head>

  <title> Food Items </title>

</head>

<body>

Food Menu

  <UL type="circle">

    <LI> Chinese </LI>

    <LI> Chowmien </LI>

    <LI> Fried Rice </LI>

    <LI>Spring Rolls </LI>

</body>

</html>

Hope It Helps

Please Mark As Brainliest

Answered by Manjiri32
1

Explanation:

<html>

<title>FOOD ITEMS</title>

<head>

<h2>Food Menu</h2>

</head>

<body>

<button> CHINESE</button>

<button>CHOWMEIN</button>

<button>FIRED RICE</button>

<button>SPRING ROLLS</button>

</body>

</html>

save as abc.html

plz follow me mate

hope this answer will helful..

Similar questions