Computer Science, asked by anitaverma15nov, 4 months ago

Write a program to create a ordered list to your welpage.

please answer fast please please please​

Answers

Answered by Anonymous
3

Answer:

Lists are used all the time on the web. Articles, website navigation menus, and product features on e-commerce websites all make frequent use of lists – even when you can’t tell that a list is being used just by looking at the web page.

There are three types of lists you can use, and this quick guide will show you how to use each

Explanation:

Hope this helps you!

Answered by anshyt7499
3

Answer:

The HTML <ol> tag is used for creating an ordered list. You can try to run the following code to create an ordered list using the <ol> tag −

<!DOCTYPE html>

<html>

<head>

<title>HTML ol Tag</title>

</head>

<body>

<p>Programming Languages:</p>

<ol>

<li>Java</li>

<li>C++</li>

<li>C</li>

</ol>

</body>

</html>

HOPE THIS WILL HELP

Similar questions