Day 5 | Daily Dose of learning
This project is inspired by the ‘100-day project’, a challenge consisting of committing to doing an activity everyday for 100 days.
I have decided to write about one thing I learn everyday for the next 30 days. This can be a skill, a deep concept to elaborate on, or a mere life lesson that made me become aware of something I consider relevant.
The decision is based on the belief that “we are what we repeatedly do”, as Valentin Perez put it.
Creating Lists in HTML
HTML stands for 'Hypertext Markup Language' and is the markup language for documents designed to be displayed in a web browser.
Through a course on Skillshare, today I have learnt how to create lists in HTML. You can create unordered or ordered lists. I am aware that this is very basic knowledge of HTML, but I am in the process of learning the basics, so this is progress for me. 😃
This is an 'unordered' list (bullet style)
- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
- It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
<h3> This is the HTML for the 'unordered' list (bullet style) </h3> <ul> <li>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</li> <br> <li>It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</li> </ul>
This is an ordered list
- flour
- sugar
- chocolate
<h3> This is the HTML for ordered list </h3> <ol> <li> flour </li> <li>sugar </li> <li> chocolate </li> </ol>