Saturday, 23 June 2012

HTML Unordered list

One of the list of HTML is Unordered list

To display text on the console, with each independent sentence being initiated with a bullet mark

Entire text is enclosed under this tags<UL> text to be displayed</UL> with each independent sentence initiating with <LI> and closing with </LI>.

Example

<HTML>
<Head>
<title>Unordered</title>
</head>
<body>
<ul>
     <li>black</li>
     <li>white</li>
     <li>green</li>
     <li>blue</li>
</ul>
</body>
</html>

SAVE WITH .HTML and after u can open the file on web browser

No comments:

Post a Comment