Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

ul attributes in html

   <ul type="circle">
        <li>This is first item.</li>
        <li>This is second item.</li>
        <li>This is third item.</li>
    </ul>
    <ul type="disc">
        <li>This is first item.</li>
        <li>This is second item.</li>
        <li>This is third item.</li>
    </ul>
    <ul type="square">
        <li>This is first item.</li>
        <li>This is second item.</li>
</ul>
 
PREVIOUS NEXT
Tagged: #ul #attributes #html
ADD COMMENT
Topic
Name
6+5 =