+ 3
What is tag <li>?
I do'nt now
22 Answers
+ 2
If you have started learning HTML you should know.
+ 6
The HTML <li> tag defines a list item in <ol>, <ul> or <menu> in the HTML document. This tag is also commonly referred to as the <li> element.
+ 5
The HTML <li> element is used to represent an item in a list. It must be contained in a parent element: an ordered list ( <ol> ), an unordered list ( <ul> ), or a menu ( <menu> ).
+ 5
this HTML tag is used in <OL> and <UL> tags to display the list items
+ 3
Akash You're profile not see
+ 2
Upwork is the world’s largest freelancing website. Upwork makes it simple, quick and cost-effective for clients to find, hire and work with freelance talent around the world. Businesses of every size use Upwork, from one-person startups to major corporations. Freelancers on the site offer more than 3,500 skills, helping to ease the pain businesses face in finding skills they need to get work done.
If you’re a freelancer looking to find work, you can find more information here: Freelancing on Upwork: How it Works
+ 2
This comes under ordered and unordered list.
Example:-
<ol>
<li> home</li>
<li>service</li>
<li> contact</li>
</ol>
This will generate output:-
1.home
2.service
3.contact.
For unordered list.
Example:-
<ul>
<li> home</li>
<li>service</li>
<li> contact</li>
</ul>
This will generate output like:-
°home
°service
°contact.
It can be used for navigation menu which you will learn slowly.
+ 2
The HTML <li> element is used to represent an item in a list.
+ 2
It is used to show element in list
+ 2
It's a list tag
+ 1
Is you from India?
+ 1
who?
+ 1
Akash
+ 1
SANJARBEK Yes I am from India.You can also see that in my profile.
+ 1
What you mean ?
+ 1
What is !DOCTYPE ???
+ 1
It's used for list ..
1.
2.
3.
+ 1
•What?
+ 1
List item
+ 1
the <li> tag is a list tag.It includes <ol>(ordered list) and <ul>(unordered list)