HTML titleLOGIN

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.


Next Section
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(www.php.cn)</title> </head> <body> <h1>这是第一个标题</h1> <h2>这是第二个标题</h2> <h3>这是第三个标题</h3> <h4>这是第四个标题</h4> <h5>这是第五个标题</h5> <h6>这是第六个标题</h6> </body> </html>
submitReset Code
ChapterCourseware