🏗️ Web Basics: HTML & CSS 🎨

What is HTML?

HTML stands for HyperText Markup Language. Imagine a website is a house. HTML is the bricks and the wood! It creates the structure.

<h1>This is a big heading!</h1>
<p>This is a normal paragraph of text.</p>

What is CSS?

CSS stands for Cascading Style Sheets. If HTML is the house, CSS is the paint!

body {
  background-color: blue;
  color: white;
}

🛠️ Try It Yourself!

Change the HTML and CSS below, then click "Run Code" to see what happens!

Live Result: