discuss the nesting of lists with HTML by giving an example
Answers
Answered by
1
A nesting list is a list that occurs as an element of another list or simply it is a sublist which means a list within list.
<!DOCTYPE html>
<html>
<body>
<h2>A Nesting List</h2>
<ul>
<li>aghahah</li>
<li>uaiaiaajj
<ul>
<li>jajajajja</li>
<li>hsjjssjjs</li>
</ul>
</li>
<li>jajajajjaj</li>
</ul>
</body>
</html>
Answered by
0
Answer:
A nesting list is a list that occurs as an element of another list or simply it is a sublist which means a list within list.
<!DOCTYPE html>
<html>
<body>
<h2>A Nesting List</h2>
<ul>
<li>aghahah</li>
<li>uaiaiaajj
<ul>
<li>jajajajja</li>
<li>hsjjssjjs</li>
</ul>
</li>
<li>jajajajjaj</li>
</ul>
</body>
</html>
Explanation:
Hope this answer will help you.✌️
Similar questions