]

Sep 26, 2015

How to Formatted UnOrdered List in HTML?

UnOrdered List

<body>
<ul>
<li>Google</li>
<li>Youtube</li>
<li>Twitter</li>
<li>Facebook</li>
</ul>
</body>

OutPut
  • Google
  • Youtube
  • Twitter
  • Facebook

Ordered List have two attributes Like TYPE and START

Type Replace Circle, Square

<body>
<ul TYPE='Circle'>
<li>Google</li>
<li>Youtube</li>
<li>Twitter</li>
<li>Facebook</li>
</ul>
</body>

Output
  • Google
  • Youtube
  • Twitter
  • Facebook
<body>
<ul TYPE='Square'>
<li>Google</li>
<li>Youtube</li>
<li>Twitter</li>
<li>Facebook</li>
</ul>
</body>

Output

  • Google
  • Youtube
  • Twitter
  • Facebook

Video


0 comments:

Post a Comment

Enter your email address: