Knowledge Walls
John Peter
Pune, Maharashtra, India
HTML UL Tag Template in HTML of Code Template
4853 Views
HTML OL Example Template
<html>
    <head>
        <title></title>
    </head>
    <body>
        <ul type="1">
             <li></li>
             <li></li>
             <li></li>
        </ul>
        <ul type="a">
             <li></li>
             <li></li>
             <li></li>
        </ul>
        <ul type="A">
             <li></li>
             <li></li>
             <li></li>
        </ul>
        <ul type="I">
             <li></li>
             <li></li>
             <li></li>
        </ul>
        <ul type="i">
             <li></li>
             <li></li>
             <li></li>
        </ul>
    </body>
</html>
Hints 
OL - ordered list
Type attribute values are 1,I,i,A,a

UL - Unordered list
Type attribute values can be disc,circle and square.
HTML UL Example Template
<html>
    <head>
        <title></title>
    </head>
    <body>
        <ul type="disc">
             <li></li>
             <li></li>
             <li></li>
        </ul>

        <ul type="circle">
             <li></li>
             <li></li>
             <li></li>
        </ul>

        <ul type="square">
             <li></li>
             <li></li>
             <li></li>
        </ul>
    </body>
</html>
Next Topics
Next lessons of current book.
  Copyright © 2014 Knowledge walls, All rights reserved
KnowledgeWalls
keep your tutorials and learnings with KnowledgeWalls. Don't lose your learnings hereafter. Save and revise it whenever required.
Click here for more details