HTML & CSS Fundamentals What is HTML?
1 / 10
Next
What is HTML? ~10min

What is HTML?

HTML stands for HyperText Markup Language. It is the backbone of every webpage.

Think of HTML as the skeleton of a page. CSS is the skin, JavaScript is the muscles.

Tags

Everything in HTML is wrapped in tags:

<h1>Hello World</h1>

Try editing the playground on the right!

Tasks
Preview