HTML Tutorial – (HTML5 Standard)
HTML Tutorial – (HTML5 Standard)

HTML (HyperText Markup Language) is the standard markup language used to create web pages.You can use HTML to build your own websites. HTML runs in browsers and is parsed by them.In this tutorial, you will learn how to use HTML to create your own site.
HTML is easy to learn! We believe you’ll master it quickly!
HTML Examples
This tutorial includes hundreds of HTML examples.
With our built-in editor, you can easily modify the HTML code online and see the result instantly.
Note: For Chinese webpages, be sure to declare the correct character encoding using <meta charset=”utf-8″> to avoid garbled text. Some browsers (like 360 Browser) may default to GBK, in which case use <meta charset=”gbk”>.
Example
<html>
<head>
<meta charset=”utf-8″>
<title>Runoob Tutorial (runoob.com)</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Click the “Try it” button to view and run the online example.
HTML File Extensions
- .html
- .htm
There is no difference between these two extensions; both are valid and can be used.
HTML Examples
Our HTML guide includes hundreds of live examples you can edit and run online.
HTML Reference Manual
At Runoob, we provide a complete HTML reference including tags, attributes, colors, entities, and more.
Online HTML/CSS/JS Tools
The online HTML/CSS/JS editor allows you to write and preview code in real time. You can also save and share high-quality code:
https://www.jyshare.com/front-end/61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Runoob Tutorial (runoob.com)</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
IT Resource Hub » HTML Tutorial – (HTML5 Standard)