freeCodeCamp/guide/english/html
Minna f365204cc8 Add the text "### Nested HTML lists" to (#22946)
* Add the text "### Nested HTML lists" to

### Nested HTML Lists

List can be nested (lists inside lists):

##### Code:

<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>


##### Output:

<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>

* Fixed formatting and reordered sections
2018-11-21 23:00:02 -05:00
..
attributes Fixed grammar error on line 70 (#21182) 2018-11-21 08:51:01 -05:00
block-and-inline-elements
comments-in-html
css-classes
doctype-declaration Usage Section Update (#22977) 2018-11-20 18:58:37 -05:00
elements fixed minor formatting error (#21184) 2018-11-21 08:27:47 -05:00
html-entities
html-forms Added resource under 'More information' (#22957) 2018-11-20 18:54:18 -05:00
html5-audio
html5-semantic-elements
html5-support
html5-video
html5-web-storage
iframes
layouts
lists Add the text "### Nested HTML lists" to (#22946) 2018-11-21 23:00:02 -05:00
mailto-links
optional-tags
page-structure
responsive-web-design Update the example to reflect the prefix (#22241) 2018-11-18 08:29:28 -06:00
semantic-html-elements
symbols
tables
tutorials Add the text "Basic HTML Program" to the article (#22181) 2018-11-19 16:33:21 -05:00
url-encoding-reference
utf-8-reference
web-sockets
index.md