HTML Tutorial - (HTML5 Standard)
HyperText Markup Language (English: HyperText Markup Language, abbreviated: HTML) is a standard markup language used to create web pages.
You can use HTML to build your own website. HTML runs in a browser, which parses it.
In this tutorial, you will learn how to use HTML to create a website.
HTML is easy to learn! We believe you can pick it up quickly!
HTML Examples
This tutorial includes hundreds of HTML examples.
Using our editor, you can easily modify HTML online and view the example results.
Note: For Chinese web pages, use <meta charset="utf-8"> to declare the encoding, otherwise, garbled characters may appear. Some browsers (like 360 Browser) set GBK as the default encoding, so you need to set it to <meta charset="gbk">.
Example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>tutorialpro.org(tutorialpro.org)</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Click the "Try It Yourself" button to view online examples.
HTML Document Extensions
.html
.htm
Both extensions are interchangeable and can be used.
HTML Examples
The HTML manual contains hundreds of online examples where you can edit and view the results in real-time.
HTML Reference Manual
At tutorialpro.org, we provide a complete HTML reference manual, including tags, attributes, colors, entities, and more.
HTML/CSS/JS Online Tools
The HTML/CSS/JS Online Tools allow you to edit HTML, CSS, and JS code online and view the effects in real-time. You can also save and share high-quality code: https://c.tutorialpro.org/front-end/61