HTML Introduction

What is HTML?

HTML stands for Hyper Text Markup Language. It is the standard markup language for creating Web pages. HTML describes the structure of a Web page and consists of a series of elements.

A Simple HTML Document

Here is an example of a basic HTML document:

Example

<!DOCTYPE html>
<html>
<head>
    <title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

Click on the "Try it Yourself" button to see how it works.

Try it Yourself »