← Back to HTML Basics

01. Introduction to HTML

HTML Fundamentals

#1What is HTML?

HTML (HyperText Markup Language) is the standard markup language for creating web pages. It provides the structure and content of websites.

HTML uses a system of tags and elements to tell the browser how to display content.

bash
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My First Website</title>
</head>
<body>
    <h1>Hello World!</h1>
    <p>This is my first webpage.</p>
</body>
</html>