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 on browsers, which parse it.
In this tutorial, you will learn how to use HTML to create a site.
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 see the example's execution results.
Note: For Chinese web pages, use <meta charset="utf-8"> to declare the encoding, otherwise, there will be乱码. 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" button to see the online example.
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 see 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, JS code online and view the results in real-time. You can also save and share high-quality code: https://c.tutorialpro.org/front-end/61