HTML stands for Hyper Text Markup Language. It is the standard markup language for creating Web pages.
The code below is a simple HTML document. Click Try it Yourself to see the result in your browser.
Below is a visualization of an HTML page structure. Only the content inside the body section is displayed in a browser.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Take our HTML Tutorial quiz and earn a certificate.