Lesson 1 of 2

Introduction to HTML

Learn the building blocks of every website — HTML tags, elements, and document structure.

15 minutes

Introduction to HTML

HTML (HyperText Markup Language) is the standard language for creating web pages.

What You'll Learn

  • Basic HTML document structure
  • Common HTML tags and elements
  • How to create headings, paragraphs, and lists
  • Adding links and images

Key Concepts

Every HTML document starts with a <!DOCTYPE html> declaration and contains <html>, <head>, and <body> elements.

Code Example

<!DOCTYPE html>
<html>
<head>
  <title>My First Page</title>
</head>
<body>
  <h1>Hello World!</h1>
  <p>This is my first web page.</p>
</body>
</html>