Friday 16 December 2016

HTML LISTS

<html>
<!-- This is 4.lists.html -->
<head>
<title> lists </title>
</head>
<body>
<p> ordered list </p>
<ol><li>list item1</li>
    <li>list item2</li>
    <li>list item3</li>
</ol> <ol start=ol style="list-style-type:upper-roman">
    <li>list item1</li>
    <li>list item2</li>
    <li>list item3</li>
</ol> <p> unordered list</p>
<p> <ul style="list-style-type:disc">
<li>chocolate</li>
<li>venilla</li>
<li>strawberry</li>
<li>mocha</li>
</ul> <ul style="list-style-type:square">
<li>chocolate</li>
<li>venilla</li>
<li>strawberry</li>
<li>mocha</li>
</ul>
<ul style="list-style-type:none">
<li>chocolate</li>
<li>venilla</li>
<li>strawberry</li>
<li>mocha</li>
</ul>
</p> <p>definition list</p><p>
<dl>
<dt> Internet Explorer</dt>
<dd> Developed by Microsoft , an integral piece of Windows Products</dd>
<dt>Mozilla FireFox</dt>
<dd> Developed by Mozill Project , an open source browser for mulitple platforms</dd>
<dt>Netscape</dt>
<dd> Developed by Netscape communications corporation one of the first graphical browsers</dd></DL>
</body>
</html>




No comments:

Post a Comment

Oracle Reserved Words

Oracle  Reserved Words The following words are reserved by Oracle. That is, they have a special meaning to Oracle and so cannot be redefi...