HTML - Tags - <ul>

#143 of 147
ul
Next var
Prev u

 <html>
 <body>
     <p>The planets:</p>
     <ul>
         <li>Mercury</li>
         <li>Venus</li>
         <li>Earth</li>
         <li>Mars</li>
         <li>Jupiter</li>
         <li>Saturn</li>
         <li>Uranus</li>
         <li>Neptune</li>
         <li><del>Pluto</del></li>
     </ul>
 </body>
 </html>
 

The ul element represents an unordered list.

A live example:


The planets:

  • Mercury
  • Venus
  • Earth
  • Mars
  • Jupiter
  • Saturn
  • Uranus
  • Neptune
  • Pluto

N of

Ads by Google


Ask a question, send a comment, or report a problem - click here to contact me.

© Richard McGrath