write a HTML program to print ordered list of 5 food items.
1. change the text colour as red and background colour of the webpage as blue.
2. give proper headings and title of the program.
please give this answer very and in the step by step wise.
Answers
Answered by
3
Answer:
<html>
<head>
<style>
body {color: red; background:blue;}
</style>
</head>
<body>
<h1>ordered list of 5 food items</h1>
<ol>
<li>Butter</li>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
<li>Egg</li>
</ol>
</body>
</html>
Explanation:
Answered by
2
Answer:
Answer:
<html>
<head>
<style>
body {color: red; background:blue;}
</style>
</head>
<body>
<h1>ordered list of 5 food items</h1>
<ol>
<li>Butter</li>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
<li>Egg</li>
</ol>
</body>
</html>
Explanation:
Similar questions