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

HTML title

This example demonstrates:

Display the title tag in an HTML document.

Example analysis:

The title (Heading) is carried out through <h1> - <h6> tags Defined.

<h1> defines the largest title, <h6> defines the smallest title.


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(miracleart.cn)</title> </head> <body> <h1>這是第一個標(biāo)題</h1> <h2>這是第二個標(biāo)題</h2> <h3>這是第三個標(biāo)題</h3> <h4>這是第四個標(biāo)題</h4> <h5>這是第五個標(biāo)題</h5> <h6>這是第六個標(biāo)題</h6> </body> </html>
submitReset Code