Answers for "define list in html with example"

1

how to make list in html

creats an organised list
<ol>
  <li>apple</li>
  <li>mango</li>
  <li>watermelon</li>
</ol>
creats an unorganised list
<ul>
  <li>apple</li>
  <li>mango</li>
  <li>watermelon</li>
</ul>
Posted by: Guest on March-06-2021
0

definition list in html

<dl>
<dt>HTML</dt>
<dd>Hypertext Markup Language</dd>
<dt>CSS</dt>
<dd>Cascading Style Sheets </dd>
</dl>
Posted by: Guest on August-05-2021

Code answers related to "define list in html with example"

Browse Popular Code Answers by Language