HTML and CSS Reference
In-Depth Information
While lists work well on their own, we may create lists within a list, also known as nesting
lists. This technique allows us to build multilayered outlines and detailed sequences of in-
structions. We can even mix ordered and unordered lists.
To nest a list, we declare a new list, <ol> or <ul>, inside a <li> element of an existing list.
For example, we can reorganize our Education list in our sample CV as follows:
<ul>
<li>MIT</li>
<ul>
<li>PhD Degree in Computer Science</li>
<li>Bachelor Degree in Computer Science</li>
</ul>
<li>Santa Rosa High School</li>
</ul>
 
Search WWH ::




Custom Search