Home

Introduction to HTML

HTML stands for HyperText Markup Language, which is the fundamental technology used to create web pages. It structures web content, such as text, images, links, and other media, allowing browsers to display them correctly.

Why Learn HTML?

HTML is the building block of all websites. Whether you're creating a personal portfolio, building a web app, or simply understanding how the internet works, mastering HTML is essential. It forms the skeleton of web pages that other technologies like CSS and JavaScript build upon.

Basic Structure of an HTML Document

Every HTML document follows a standard structure. The basic elements include:


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My First HTML Page</title>
</head>
<body>
    <!-- This is where your content goes -->
</body>
</html>
    

Key HTML Tags

Exercise

Create your own HTML document following the structure shown above. Add a title and some basic content such as headings, paragraphs, and a link.