HTML List
--------------------------------------------------------------------------------
==============================
HTML Lists
HTML lists are used to present list of information in well formed and semantic way. There are three different types of list in HTML and each one has a specific purpose and meaning.
- Unordered list — Used to create a list of related items, in no particular order.
- Ordered list — Used to create a list of related items, in a specific order.
- Description list — Used to create a list of terms and their descriptions.
Names and Uses of HTML Elements Used to Create Many elements
UL Element – The full name of UL Element is Unordered OL Element – The full name of OL Element is Order LI Element – The full name of LI Element is List Item. DL Element – The full name of DL Element is Definition DT Element – The full name of DD Element is Definition DD Element – The full name of DD Element is Definition |
An unordered list created using the <ul> element, and each list item starts with the <li> element. The list items in unordered lists are marked with bullets.
Here's an example:
<html>
<head>
<title> Unordered list Tag
</title>
<head>
<body>
<h1> Programming Languages
list</h1>
<ul>
<li>Html</li>
<li>Java</li>
<li>C++</li>
<li> C</li>
<li> CSS</li>
</ul>
</body>
</html>
Output :-
0 Comments