Lesson 1 of 6
Introduction to HTML
Learn what HTML is and why it's the foundation of every website.
HTML stands for HyperText Markup Language. It's the standard language for creating web pages. Every website you visit is built with HTML at its core.
Code Example
HTML
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>1 / 6