Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Using Headings and Paragraphs | Section
HTML Essentials

bookUsing Headings and Paragraphs

メニューを表示するにはスワイプしてください

You understand how to build the correct HTML structure, let's shift our focus to populating the body element with content to display on the webpage.

Headings

Headings are used to structure and organize content on a webpage. HTML provides six levels of headings, ranging from <h1> (most important) to <h6> (least important).

It is important to use each heading level appropriately to maintain clarity and consistency in the document's structure. Using higher-level headings excessively or skipping levels can lead to confusion and make it difficult for users and search engines to comprehend the organization of the content.

index.html

index.html

copy
  • <h1> is used for the main heading of the page;
  • <h2> is used for subheadings, indicating a lower level of importance compared to <h1>;
  • <h3> is used for further subdivisions within a subsection.

Paragraphs

Paragraphs, denoted by the <p> tag, separate blocks of text into distinct paragraphs, providing visual and semantic clarity to the content.
Example:

index.html

index.html

copy
  • Each <p> tag defines a separate paragraph block;
  • The browser automatically adds spacing between paragraphs to enhance readability and maintain visual consistency.

1. How many levels of headings does HTML provide?

2. Which tag is used to denote headings in HTML?

3. What is the recommended practice regarding the use of headings in HTML?

4. Which tag is used to define paragraphs?

question mark

How many levels of headings does HTML provide?

正しい答えを選んでください

question mark

Which tag is used to denote headings in HTML?

正しい答えを選んでください

question mark

What is the recommended practice regarding the use of headings in HTML?

正しい答えを選んでください

question mark

Which tag is used to define paragraphs?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  5

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 1.  5
some-alt