Header Ads Widget

Ticker

6/random

HTML Unordered Lists


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 list
 and <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.The
 default 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>

Post a Comment

0 Comments