Write the HTML code to print the following list :
95. Banana
96. Apple
500. Orange
501. Papaya
502. Pineapple
Answers
Answered by
7
HTML Code:
<!DOCTYPE html>
<html>
<body>
<!-- As the list starts are different and aren't in sequence, we need to use two lists-->
<ol start="95">
<li>Banana</li>
<li>Apple</li>
</ol>
<ol start="500">
<li>Orange</li>
<li>Papaya</li>
<li>Pineapple</li>
</ol>
</body>
</html>
Output:
95. Banana
96. Apple
500. Orange
501. Papaya
502. Pineapple
Learn more:
1. Write the HTML code to generate the following output: Dubai Tourism
https://brainly.in/question/6713763
2. Fill in the blanks.
https://brainly.in/question/19504208
Attachments:
Similar questions