Popular Posts

Monday, 1 August 2011

How to add Bullets on web page

BULLETED LIST:
Today, I’ll show you how to display bullets on your web page.
Try to write it down or copy paste the below codes in your note pad:
<html>
<head>
<title> This is my Fruit web page </title>
</head>
<body>
Here is my Fruit List:
<ul>
<li> Banana </li>
<li> Mangoes </li>
<li> Oranges </li>
</ul>
</body>
</html>                                                                                                                                                                                                         
Output:

Here is my Fruit List:
·       Banana
·       Mangoes
·       Oranges

1 comment: