HTML Tutorial - (HTML5 Standard)
You can use HTML to build your own WEB site.
In this tutorial, you will learn how to use HTML to create a site.
HTML is easy to learn! I’m sure you’ll learn it quickly!
HTML Examples
This tutorial contains hundreds of HTML examples.
Using the editor of this site, you can easily modify HTML online and view the running results of the example.
Note: For Chinese web pages, you need to use <meta charset="utf-8"> to declare the encoding, otherwise garbled characters will appear.
Example
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <h1>我的第一个标题</h1> <p>我的第一个段落。</p> </body> </html>
Try it out»
Start learning HTML!
HTML Example
The HTML manual contains hundreds of online examples, you can edit online and view the running results.
View HTML examples!
HTML Reference Manual
In the php Chinese website, we provide a complete HTML reference manual, including tags, attributes, colors, Entities and so on.
HTML Tag Reference Manual