What does section mean in html5

青灯夜游
Release: 2022-03-15 17:56:08
Original
8433 people have browsed it

In HTML5, section means "section" or "section", which is used to define sections (sections) in the document, such as chapters, headers, bottoms or other areas of the document; the section tag can Chunk or segment the content in the document.

What does section mean in html5

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

What does section mean in html5

tag defines a certain area of ​​the document. Such as chapters, headers, footers, or other areas of the document.

The

tag blocks or sections the content in the document.

Example: An area of ​​the document that explains what WWF is

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
</head>
<body>

<section>
  <h1>WWF</h1>
  <p>The World Wide Fund for Nature (WWF) is an international organization working on issues regarding the conservation, research and restoration of the environment, formerly named the World Wildlife Fund. WWF was founded in 1961.</p>
</section>

<section>
  <h1>WWF&#39;s Panda symbol</h1>
  <p>The Panda has become the symbol of WWF. The well-known panda logo of WWF originated from a panda named Chi Chi that was transferred from the Beijing Zoo to the London Zoo in the same year of the establishment of WWF.</p>
</section>

</body>
</html>
Copy after login

What does section mean in html5

Description:

# The ##
tag is a new tag in HTML5.

IE 8 or earlier versions of IE browsers do not support the
tag.

【Related recommendations:

html video tutorial, web front-end

The above is the detailed content of What does section mean in html5. 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!