For online website test

Website Design With HTML | HTML List

3 comments :
In this tutorial you will learn how to create a variety of lists.
You can create three types of lists in HTML:

  • Unordered lists, which are like lists of bullet points
  • Ordered lists, which use a sequence of numbers or letters instead of bullet points
  • Definition lists, which allow you to specify a term and its definition
  HTML Unordered Lists:
1. Start with <ul>(unordered list) tag and end with a closing </ul> tag.
2. Enter the <li>(list item) tag followed by the individual item and close with </li>.

Try this example::
<p>Download:</p>
<ul>
<li >Software

3 comments :