Reading Notes

Showcasing my progress during the TechEducator Full-Stack MERN Bootcamp. Explore through the 'Class Content' or read about me below!

View the Project on GitHub cailumleyshon/reading-notes

Week 1 Class 5



“What is the purpose of CSS?”


The purpose of CSS (Cascading Style Sheets) is to control the presentation and layout of web documents. It defines how HTML elements should be displayed on a web page, including aspects like fonts, colors, spacing, and positioning, making websites visually appealing and user-friendly.


“What are 3 ways to insert CSS into your project?”


The 3 ways to insert CSS into your project are:

p {
    color: red;
}