answersLogoWhite

0

How can you make a list in HTML?

User Avatar

Anonymous

10y ago
Updated: 7/10/2022

An unordered (bulleted) list uses the

    tags, as follows:

    • First item
    • Second item

    This produces:

    • First item
    • Second item

    For an ordered (numbered) list, use the

      tags instead:

      1. First item
      2. Second item

      This produces the following:

      1. First item
      2. Second item

      You can also nest lists within lists:

      1. First item
        • First subitem
        • Second subitem

      2. Second item
        • Third subitem
        • Fourth subitem

      This produces the following:

      1. First item

      • First subitem
      • Second subitem
      2. Second item
      • Third subitem
      • Fourth subitem
      User Avatar

      Pablo Friesen

      Lvl 10
      3y ago

      What else can I help you with?

      Related Questions

      How do you make a list inside a list in HTML?

      To make a list within a list, you will create another OL or UL element within one of the LI elements of the outer list.


      What is a list in HTML?

      A list in HTML defines a collection of items. List can be ordered (OL) or Unordered (UL).


      How do you make an eighth note in HTML?

      You can produce an eighth note in HTML using the numerical indicator from UTF, and the &. Enter the following code into your raw HTML document: ♪ This will produce a character that looks like this: ♪ You can find a list of other special characters in HTML in the related links.


      Which of the list style types in HTML markup is the square style?

      In HTML markup the square in a List is:In CSS the CSS Sheet would include this for a square List item:ul.square {list-style-type: square;}


      Where can one find a list of WYSIWYG HTML editors?

      There are many places where one can find a list of suitable WYSIWYG HTML editors. This includes books dedicated to HTML as well as blogs and forum posts.


      A list of rainforests?

      www.a_to_zrainforestlistings.com/list1.html


      How do you make a list not display bullet points?

      To make a list not display bullet points in HTML and CSS, you can use the CSS property list-style-type. Set it to none for the <ul> or <ol>. For example, you can use the following CSS: ul { list-style-type: none; } This will remove the bullet points from the unordered list.


      List of color codes in HTML?

      Link below


      How many HTML Lists?

      Lists in HTML are of 2 types i.e. UL and OL. UL defines the unordered list whereas OL defines ordered list.


      Where can you find a list of all the NYC mayors?

      http://www.nyc.gov/html/nyc100/html/classroom/hist_info/mayors.htm there :)


      What does the code li mean?

      list item. it is the child of either <ul> - unordered list, or <ol> - ordered list in html


      Where can one find a list of special characters in HTML?

      One can find a list of special characters in HTML when one goes to the website of the University of Texas. There is a special page entitled "HTML characters". There one can find the special characters as well as their meanings.