Last Updated: March 11, 2021
·
1.145K
· AwesomeScottB

Make one bulleted list inside another

Decision

Nested lists are designed to organize a complex hierarchical structure of text, usually documents such as legal or technical. In addition, nested lists are used to create layered menus and site navigation. To create this structure, a list is first created using the <ul> tag, and the nested list is inserted inside one of the <li> tags, as shown in Example 1.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>TEST</title>
</head>
<body>
<ul>
<li>TEST
<ul>
<li>test</li>
<li>test</li>
<li>test</li>
</ul>
</li>
<li>TEST</li>
<li>TEST</li>
<li>TEST</li>
<li>TEST</li>

</ul>
</body>
</html>
Bulleted lists will come in handy in life anyway, especially if you work as a pro essay writer, in which case you need to know a lot of subtleties.