describe the tags used to create an unorderedlist
Answers
Answered by
1
Answer:
<ul>
Explanation:
So, for creating an unordered list in HTML, you use the <ul> tag. This is how it works:
<ul> = Unordered List Opens
<li> = List Item 1
</li> = List Item 1 closed
.
.
.
</ul> = Unordered List Closes
Example:
<body>
<div>
<p> To-Do List </p>
<ul>
<li> Finish Homework </li>
<li> Prepare for Test </li>
<li> Read my Book </li>
</ul>
</div>
</body>
Hope it helps!
Similar questions