HTML Unordered Lists
An unordered list is a list of item in which each item is marked with a symbol.Unordered list is also known as unnumbered listand <ul> tag is used to create an unordered list,it stands for unordered list,<li> tag is used with each item in the list,</ul>
tag is used to close an unordered list.
Attributes:
Type:It specifies the type of symbol to appear with each item of list.Possible values are fillround,square,disc, circle.Thedefault value is circle.
Example
<html>
<head>
<title
Minds Mania
</title>
</head>
<body>
Name of Cities
<ul>
<li>London
<li>Karachi
<li>New York
</ul>
</body>
</html>
Next Example
<html>
<head>
<title
Minds Mania
</title>
</head>
<body>
Programming
<ul type="circle">
<li>Java
<li>C sharp
<li>C++
<li>HTML
</ul>
</body>
</html>
0 Comments