Lesson 1: Introduction to HTML
Hello! If you want to build websites, HTML is your first step.
What is HTML?
HTML stands for HyperText Markup Language. It is the foundation of every web page.
When you open a website, HTML tells the browser what to display — like headings, text, images,
and links.
Let’s look at a simple example:
HTML is made up of tags.
For example, is used for headings and is used for paragraphs.
A simple web page looks like this:
My First Web Page
Hello World!
This is my first HTML page
This code will display a heading and a paragraph in the browser.
In short:
HTML is the structure of your web page.
In the next lesson, we will learn how to create and run this code.
Stay tuned!