In HTML, the full English name of li is "list item", which means "list item". It is an element tag that defines a list item. The syntax is "
list item content ";"" tag can be used in ordered list " " and unordered list "
".
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer. The full English name of
li is "list item", which means "list item".
Example:
<html> <body> <p>有序列表:</p> <ol> <li>打开冰箱门</li> <li>把大象放进去</li> <li>关上冰箱门</li> </ol> <p>无序列表:</p> <ul> <li>雪碧</li> <li>可乐</li> <li>凉茶</li> </ul> </body> </html>
html video tutorial"
The above is the detailed content of What is li in html. For more information, please follow other related articles on the PHP Chinese website!