HTML TUTORIALS-
HTML Unordered Lists Tag –
Introduction-
HTML Unordered Lists Tag -
-✅ HTML unordered lists are used to group a set of related items in no particular order.They are created using the <ul>(unordered list) tag, and each item inside the list is placed within an <li>(list item) tag:-
-)✅Unordered List with type="circle"-👇
<ul type="circle">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
-)✅Unordered List with type="square"-👇
<ul type="square">
<li>Python</li>
<li>Java</li>
<li>C++</li>
</ul>
<!DOCTYPE html>
<html>
<head>
<title>Nested Unordered List</title>
</head>
<body>
<h2>Grocery List</h2>
<ul>
<li>Fruits
<ul>
<li>Apple</li>
<li>Banana</li>
</ul>
</li>
<li>Vegetables
<ul>
<li>Carrot</li>
<li>Tomato</li>
</ul>
</li>
</ul>
</body>
</html>