HTML Tutorial – (HTML5 Standard)

Hypertext Markup Language (HTML) is a standard markup language used to create web pages.
You can use HTML to build your own WEB site. HTML runs on the browser and is parsed by the browser.
In this tutorial, you will learn how to create a site using HTML.
HTML is easy to learn! I’m sure you’ll be able to pick it up quickly!
HTML Example
This tutorial contains hundreds of HTML examples.
Using the editor on this site, you can easily modify HTML online and view the example running results.
Note: For Chinese web pages, you need to use
<meta charset=”utf-8″> to declare the encoding, otherwise garbled characters will appear. Some browsers (such as 360 browser) will set GBK as the default encoding, so you need to set it to
<meta charset=”gbk”>.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>IT资源网(it-res.com)</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
HTML document extension
- .html
- .htm
There is no difference between the above two suffixes and both can be used.
Start learning HTML!
IT Resource Hub » HTML Tutorial – (HTML5 Standard)