What does HTML header do?

零下一度
Release: 2017-05-16 14:07:46
Original
2089 people have browsed it

In HTML documents, titles are important.

HTML Title

Heading (Heading) is defined through

-

tags.

defines the largest heading.

Defines the smallest heading.

Example

<h1>这是一个标题。</h1>
<h2>这是一个标题。</h2>
<h3>这是一个标题。</h3>
Copy after login

Note: The browser will automatically add blank lines before and after the title.

Titles are important

Make sure to use the HTML title tag only for titles. Don’t use headings just to produce bold or large text.

Search engines use headers to index the structure and content of your web pages.

Because users can quickly navigate your web page through headings, it is important to use headings to present the structure of your document.

H1 should be used as the main heading (the most important), followed by h2 (the next most important), then h3, and so on.

HTML Horizontal Line

The


tag creates a horizontal line in an HTML page. The

hr element can be used to separate content.

Example

<p>这是一个段落。</p>
<hr>
<p>这是一个段落。</p>
<hr>
<p>这是一个段落。</p>
Copy after login

HTML comments

You can insert comments into HTML code, which can improve its readability and make the code easier to understand. The browser ignores comments and does not display them.

The comment is written as follows:

Example

<!-- 这是一个注释 -->
Copy after login

Comment: An exclamation point needs to be followed immediately after the opening bracket (the left bracket), and not before the closing bracket (the right bracket). , reasonable use of comments can help future code editing work. .

HTML Tips - How to View Source

Have you ever looked at some web page and marveled at how it was implemented?

If you want to find out the secret, just right-click and select "View Source" (IE) or "View Page Source" (Firefox). Other browsers do the same thing. Doing so will open a window containing the HTML code for the page.

【Related Recommendations】

1. Special Recommendation:"php Programmer Toolbox" V0.1 version Download

2. Free html online video tutorial

3. php.cn original html5 videotutorial

The above is the detailed content of What does HTML header do?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!