HTML tutorialLOGIN

HTML tutorial

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


Next Section
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <h2>欧洲冠军联赛</h2> <p>欧洲冠军联赛,简称欧冠,是欧洲足球协会联盟主办的年度足球比赛,代表欧洲俱乐部足球最高荣誉和水平,被认为是全世界最高素质,最具影响力以及最高水平的俱乐部赛事,亦是世界上奖金最高的足球赛事和体育赛事之一,估计每届赛事约有超过十亿电视观众通过人造卫星观看赛事。</p> </body> </html>
submitReset Code
ChapterCourseware