标签 ul li 在Html code里大量出现:
ul -> unordered list
li -> list
ol -> ordered list
The <ul> element is used to define an unordered list of items. Use an unordered list to contain <li> elements that do not need to be presented in numerical order and can be rearranged without changing the meaning of the list.
<p>Unordered list items:</p>
<ul>
<li>Arranged in any order</li>
<li>Will still make sense</li>
</ul>
输出如下:
Unordered list items:
- Arranged in any order
- Will still make sense
<ul>
<li>This</li>
<li>That</li>
<li>The other</li>
</ul>
<ol>
<li>First item</li>
<li>Second item</li>
<li value="46">Fourty-sixth item</li>
</ol>
输出如下:
- This
- That
- The other
- First item
- Second item
- Fourty-sixth item