HTML tutorial


Hypertext Markup Language (English: HyperText Markup Language, referred to as: HTML) is a standard markup language used to create web pages.

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 instance.

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

to declare the encoding, otherwise garbled characters will appear.

Instance

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>php中文网</title>
</head>
<body>

<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>

</body>
</html>

Run Instance»Click the "Run Instance" button View online examples

Start learning HTML!

The suffix name of the HTML document

.html

.htm

There is no difference between the above two suffixes and both can be used.

HTML Examples

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 , which includes labels, attributes, colors, entities, and more.

HTML Development Manual!