answersLogoWhite

0

What is a tag List 10 HTML tag?

Updated: 12/8/2022
User Avatar

Wiki User

10y ago

Best Answer

There are various tags in HTML that can be used. 10 of them are: p, a, br, head, body, html, title, script, link, style.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a tag List 10 HTML tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does the OL tag do?

The <ol> tag creates an ordered (i.e. numbered) list in HTML.


What is the function of LIST tag in HTML language?

There is no LIST tag in HTML. There are two tags that can help us create lists. <OL> to create ordered lists <UL> to create unordered lists


To create a numbered list in HTML which tag would you begin with?

It's called <ol> for "ordered list".


What is the A HTML tag called?

The HTML tag is called the "anchor" tag.


What does the tag OL stands for?

<OL> tag is used to create Ordered List in a HTML page. For example: <HTML><BODY> <OL type="I"> <LI>Apple</LI> <LI>Banana</LI> </OL> </BODY></HTML> Will give output as: I. Apple II.Banana


What are the advantage and disadvantage using List Tag?

maintains proper semantics of a html document provides flexibility as the order of lists can be easily changed


Where do you get HTML code reader?

10. hey tag, what's with the code?


Why use HTML tags?

Tags are the basic rules in HTML like if you wanted to add a dotted list you can use the ul tag and you can add images with the img tag and you can make the image a link by nesting the img inside a link tag but i believe the most useful tag is the div tag


What HTML tag is used to mark the top of the page?

The first tag you use when developing an HTML document is the tag. The first tag you use for the main content of your page is the tag. is the tag that marks the top of an HTML page. The minimum required first like is , which starts the definition of the page content.


What is HTML to list?

To make a numbered list in HTML, use the following code: <ol> <li>This would be item 1</li> <li>This would be item 2</li> <li>This would be item 3</li> <li>And so on...</li> </ol> The <ol> tag starts the numbered list, while the </ol> tag ends it. Each <li> tag starts a new item in the list. Each </li> tag ends an item in the list. Just be sure to remember to close each list item before beginning the next one or before ending the whole list, otherwise your list will not format properly. For a list without numbers (a bulletpoint list), simple replace the <ol> tag with a <ul> tag, and the </ol> tag with a </ul> tag. Hope this helps! :)


How do you center a list when creating a simple HTML webpage?

<center> tag can be used for centering a list. This has been depreciated in the latest versions.


Can you list some HTML codes?

Some HTML codes include tag structure in them. The tags such as <form>, <input>, <select> etc work the most.