亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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中文網(wǎng)(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


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> </head> <body> <h2>歐洲冠軍聯(lián)賽</h2> <p>歐洲冠軍聯(lián)賽,簡稱歐冠,是歐洲足球協(xié)會聯(lián)盟主辦的年度足球比賽,代表歐洲俱樂部足球最高榮譽和水平,被認為是全世界最高素質,最具影響力以及最高水平的俱樂部賽事,亦是世界上獎金最高的足球賽事和體育賽事之一,估計每屆賽事約有超過十億電視觀眾通過人造衛(wèi)星觀看賽事。</p> </body> </html>
submitReset Code