Today I learned some useful HTML and CSS concepts in my web development class.
Topics I Learned
- List Style Type I learned how to change the style of lists using list-style-type. Example: ul { list-style-type: disc; }
- Gap Property The gap property is used to create space between items, especially when using Flexbox. .container { display: flex; gap: 20px; }
- Flexbox I learned the basics of Flexbox, which helps to arrange elements easily in a row or column. .container { display: flex; }
- Font Awesome I learned how Font Awesome can be used to add icons to a webpage.
- Display Property I learned about the display property and how block, inline, and none work. display: block; display: none;
- Checkbox Input I also learned how to create a checkbox using HTML. HTML HTML
Top comments (0)