HTML Introduction
HTMLHTML stands for HyperText Markup Language. It is the standard language for creating web pages.
Every website you visit — Google, YouTube, Instagram — is built with HTML at its core.
What You Will Learn
- HTML elements and tags
- How to structure a web page
- Headings, paragraphs, links, images
- Lists, tables, and forms
What is an HTML Element?
An HTML element is defined by a start tag, some content, and an end tag:
Example — HTML
<h1>Hello World</h1>
<p>This is my first web page.</p>
Result
Hello World
This is my first web page.