HTML Tutorial
HTML Tutorial
Learn HTML
HTML is the standard markup language for Web pages.
With HTML you can create your own Website.
HTML is easy to learn - You will enjoy it!
HTML stands for Hyper Text Markup Language and is the backbone of all web pages.
HTML Tutorial
Study our HTML Tutorial for free,
no registration needed.
HTML Course + Certificate
Upgrade your learning with our
interactive HTML Course and Get Certified.
Tip: Sign in to track your progress - it's free.
Learning by Examples
With our "Try it Yourself" editor, you can edit the HTML code and view the result in the browser:
Example
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>Click on the "Try it Yourself" button to see how it works.
What is HTML?
- HTML stands for Hyper Text Markup Language
- HTML is the standard markup language for creating Web pages
- HTML describes the structure of a Web page
- HTML consists of a series of elements
- HTML elements tell the browser how to display the content
- HTML elements label pieces of content such as "this is a heading", "this is a paragraph", etc.