HTML (14)
Nested List
List can be nested.You can also have a number of Paragraph,each containing a nested list in a single list item.
Example ↓↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
<body>
<ul>
<li>Fruits</li>
<ul type "circle">
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ul>
</body>
</html>
List can be nested.You can also have a number of Paragraph,each containing a nested list in a single list item.
Example ↓↓↓↓↓
<html>
<head>
<title>My Page</title>
</head>
<body>
<ul>
<li>Fruits</li>
<ul type "circle">
<li>apple</li>
<li>banana</li>
<li>orange</li>
</ul>
</body>
</html>
0 Comments