Course Content
🧩 Introduction to Programming?
What is Programming? 🎯 Objectives: 📘 Explanation: 💻 Example (in Pseudocode): 🛠️ Exercise:
0/1
🧩 Module 2: Adding Interactivity (JavaScript)
0/3
🧩 Module 3: Programming Language (Python)
0/1
🎓 Coding for Kids: A Beginner’s Course | HTML, CSS, JavaScript & Python

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.