H tags should be used reasonably in web page production

H tags should be used reasonably in web page production
HTML tags have special tags to handle the title of the page. They are h1, h2, h3, h4, h5 and h6. Just like in feudal society, h1 is the omnipotent monarch and h6 is the lowest class of people.

Copy code
The code is as follows:

<h1>Main title, write here</h1>
<h6>Sub-title, write here</h6>


Copy code
The code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>My first web page - jb51.net</title>
</head>
<body>
<h1>My first web page - jb51.net</h1>
<h2>What is this</h2>
<p>Simple web pages composed with HTML</p>
<h2>Purpose</h2>
<p>Learn HTML</p>
</body>
</html>

Note that the h1 tag can only be used once on a page - assuming it is the main title of the page, it should not be used multiple times (equivalent to the title of an article, you can have a sub-title, but you would not use two parallel titles, right? - Translator's note jb51.net).
However, h2 to h6 can be used as many times as you need, but they should be used in the order they are designed to be used. For example, h4 should be a subheading of h3, h3 should be a subheading of h2, and so on.

<<:  Example code for CSS to achieve horizontal lines on both sides of the text

>>:  How to view the database installation path in MySQL

Recommend

Various methods to restart Mysql under CentOS (recommended)

1. MySQL installed via rpm package service mysqld...

How to change the password of mysql5.7.20 under linux CentOS 7.4

After MySQL was upgraded to version 5.7, its secu...

How to configure environment variables in Linux environment

JDK download address: http://www.oracle.com/techn...

Vue implements book management case

This article example shares the specific code of ...

Awk command line or script that helps you sort text files (recommended)

Awk is a powerful tool that can perform some task...

How to implement Hover drop-down menu with CSS

As usual, today I will talk about a very practica...

Use CSS to easily implement some frequently appearing weird buttons

background In the group, some students will ask r...

How to find slow SQL statements in MySQL

How to find slow SQL statements in MySQL? This ma...

Ideas and practice of multi-language solution for Vue.js front-end project

Table of contents 1. What content usually needs t...

How to configure Jupyter notebook in Docker container

Jupyter notebook is configured under the docker c...

Using JS to implement a small game of aircraft war

This article example shares the specific code of ...

CSS3 implements the sample code of NES game console

Achieve resultsImplementation Code html <input...

How to access MySql through IP address

1. Log in to mysql: mysql -u root -h 127.0.0.1 -p...