FRONT END:
Today I Learned: HTML List Items
and learned how to use list items in HTML,
What is a List Item in HTML?
In HTML, the li tag is used to define an item in a list.
ul— an unordered list (bullets)
ol — an ordered list (numbers)
Example : Unordered List
Output:
ABOUT
PROJECT
DETAILS
CSS:
Today I learned how to center text using CSS
- Center Text Horizontally The easiest way to center text horizontally is to use:
text-align: center;

Top comments (0)