HTML title
Defined by tags such as
<h1>一标题</h1><h2>二标题</h2><h3>三标题</h3><h4>四标题</h4><h5>五标题</h5><h6>六标题</h6>
Effect : As we can see, the title is bold or large text, so it is important to note that the title tag should be used semantically, that is, the title tag should only be used for the title text. If you use them to produce bold or large text, use other tags or CSS instead.
One titleh1 is used as the main title (the most important), followed by h2 (the second most important), then h3, and so on.
It is important to use titles to present the document structure. On the one hand: (User Experience) users can quickly browse your webpage through titles; on the other hand: (SEO) Search engines use titles for your webpages. The structure and content are indexed. You can use h1 for the more important titles in the web page. If you need to change the font style, change it through CSS. Because h1 is the most important title, crawlers will be much more sensitive to h1 and will think that titles marked with h1 are important content in the web page.
HTML paragraph
defined by
tag
<p>这是一个段落</p><p>这是另一个段落</p>
Effect:
This is a paragraph
This is another paragraph
The title tag are both block-level tags. By default, HTML or browser The compiler automatically adds an extra blank line before and after block-level elements. And different browsers will add certain margins and padding to the content of these tags.