HTML Unorder list is very very important concept in html, with ul, li tags we can produce list of contents with css styles. In html unorder list is used for menus, navigation and some others designs.
HTML Unorder list example :
The above html unorder list example program is best one for beginers
I hope it'll helpfull for you
Thanks,
If any doubts comment here..
HTML Unorder list example :
<html>
<head>
<title>Welcome to Fresherstarget</title>
</head>
<body>
<ul>
<li>First List</li>
<li>Second List</li>
<li>Third List</li>
<li>Fourth List</li>
</ul>
</body>
</html>
<head>
<title>Welcome to Fresherstarget</title>
</head>
<body>
<ul>
<li>First List</li>
<li>Second List</li>
<li>Third List</li>
<li>Fourth List</li>
</ul>
</body>
</html>
The above html unorder list example program is best one for beginers
I hope it'll helpfull for you
Thanks,
If any doubts comment here..