how to create a list
To create lists, you can use the following tags: <ul>, <ol> and <li>.
Unordered lists or bullet points use the tags <ul>, <li>
Example:
- cleanser
- sunscreen
- toner
- serum
<ul><li>cleanser</li>
<li>sunscreen</li>
<li>toner</li>
<li>serum</li></ul>
Whereas an ordered list uses the tags <ol> and <li>
- cleanser
- sunscreen
- toner
- serum
<ol><li>cleanser</li>
<li>serum</li></ol>
<li>toner</li>
<li>serum</li></ol>