国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

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>我的第一個標(biāo)題</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)盟主辦的年度足球比賽,代表歐洲俱樂部足球最高榮譽和水平,被認(rèn)為是全世界最高素質(zhì),最具影響力以及最高水平的俱樂部賽事,亦是世界上獎金最高的足球賽事和體育賽事之一,估計每屆賽事約有超過十億電視觀眾通過人造衛(wèi)星觀看賽事。</p> </body> </html>
submitReset Code