DEV Community

Jeevish
Jeevish

Posted on

My Learning Today: HTML & CSS Basics

Today I learned some useful HTML and CSS concepts in my web development class.
Topics I Learned

  1. List Style Type I learned how to change the style of lists using list-style-type. Example: ul { list-style-type: disc; }
  2. Gap Property The gap property is used to create space between items, especially when using Flexbox. .container { display: flex; gap: 20px; }
  3. Flexbox I learned the basics of Flexbox, which helps to arrange elements easily in a row or column. .container { display: flex; }
  4. Font Awesome I learned how Font Awesome can be used to add icons to a webpage.
  5. Display Property I learned about the display property and how block, inline, and none work. display: block; display: none;
  6. Checkbox Input I also learned how to create a checkbox using HTML. HTML HTML

Top comments (0)