Add Style with CSS
🎯 Objectives:
Learn how to change colors, fonts, and layouts using CSS
Connect CSS with HTML
📘 Explanation:
CSS stands for Cascading Style Sheets. It lets you make your website look awesome by changing colors, fonts, sizes, and more.
💻 Code Example:
html
Copy
Edit
body {
background-color: #fefbd8;
font-family: Comic Sans MS;
}
h1 {
color: blue;
text-align: center;
}
🛠️ Exercise:
Style your HTML page by changing background color and heading color.
Try changing font sizes and text alignment.

