Indent HTML text Multiple Levels
Indent HTML text multiple times or levels. Indent within indent as often as you want. Use the <ul> tag </ul> to indent text with compounding indents and as many levels as needed. You can also use the <dl><dt> to indent once, but these tags will not allow you to indent more than one level. Using the <ul> tag </ul> to indent text allows you to indent as many levels as you want.
<p>This text is not indented</p>
<ul>
<p>This text is indented one level.</p>
<p>Sed in auctor nisl. Nullam vel facilisis erat, vitae consequat felis. Curabitur nunc nunc, condimentum nec congue vitae, ornare vel enim. Quisque pellentesque lorem nisl, vitae condimentum augue scelerisque eu.</p>
<ul>
<p><b>This paragraph is indented to level 2 by adding another the ul tag.</b></p>
</ul>
<p>This text is back to the first level</p>
</ul>
<p>Back to the document level.</p>
Example:
The HTML above produces this result:
This text is not indented.
This text is indented one level.
Sed in auctor nisl. Nullam vel facilisis erat, vitae consequat felis. Curabitur nunc nunc, condimentum nec congue vitae, ornare vel enim. Quisque pellentesque lorem nisl, vitae condimentum augue scelerisque eu.
This paragraph is indented to level 2 by adding another the ul tag.
Back to the document level.