HTML for Kids: A Beginner’s Course | HTML and CSS

✅ Description:

Learn how to change text color, background color, fonts, and alignment.

📘 Explanation:

Use properties like color, background-color, font-family, text-align, and font-size.

💻 Code Example:

css
 
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}

h1 {
color: green;
text-align: center;
}

 

🛠️ Exercise:

  • Create a “My Favorite Animal” page.

  • Style the background, headings, and text to look fun and readable.