HTML CSS IMAGES LINKS
 
HTML → Lists

Ordered List <ol>

  1. Do You Have Any Questions?
  2. Is This Easy?
  3. Are You Having Fun?

Type your code as illustrated below:

<ol>
<li> Do You Have Any Questions?
<li> Is This Easy?
<li>Are You Having Fun?
</ol>

Unordered List <ul>

  • Afghanistan
  • United States
  • China

Type your code as illustrated below:

<ul>
<li> Afghanistan
<li> United States
<li>China
</ul>

 
  back ↑