Saturday, 23 June 2012

HTML ORDERED LIST

HTML ORDERED LIST

In ordered list we can display the text carrying large roman letters, small roman letters, capital letters etc.,

Ordered list intiates using the tags <OL type="Value"> text to be displayed </OL>

<html>
<head>
  <title>ordered</title>
</head>
<body>
MY STUFFS
<ol type="A">
<li>bag</li>
<li>watch</li>
</ol>
Music
<ol type="1">
<li>slow</li>
<li>fast</li>
<li>sad</li>
</ol>
</body>
</html>

SAVE WITH  .HTML and after open on web browser

No comments:

Post a Comment