The section tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
In this article we will learn the section tag in HTML5, this is the tag used to declare elements in the page.
The section tag defines sections of the page, such as chapters, categories, headers, footers, or any other section of the page.
1. What is the section tag in HTML5?
As I introduced above, the HTML section tag was introduced in the HTML5 release. Its use is used to declare positions on the interface of a web page.
For example, on the sidebar, you have 3 blocks, then you can declare a section for the sidebar position, inside the sidebar declare 3 more positions.
<section id="sidebar"> <section id="vitri1"> </section> <section id="vitri2"> </section> <section id="vitri3"> </section> </section>
2. How to use sections in HTML5
You should use the section tag when your page includes many elements, using the section tag for each of those elements will make the process of managing and modifying the content later a lot easier.
For example, you can use sections to wrap around places like header, footer, sidebar, etc. However, in practice people still often use sections in the main body of the web page, because they We already have a lot of cards for other positions.
Example : Use the section tag for each section of the article and give them a class and id for easy management later.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>Học html miễn phí tại web888.vn</h1> <section id="define"> <h2>Định nghĩa</h2> <p> PHP (viết tắt hồi quy "PHP: Hypertext Preprocessor") là một ngôn ngữ l ập trình kịch bản hay một loại mã lệnh </p> </section> <section id="history"> <h2>Lịch sử</h2> <p> PHP được phát triển từ một sản phẩm có tên là PHP/FI. PHP/FI do Rasmus Lerdorf tạo ra năm 1994, ban đầu được xem như là một tập con đơn giản của các mã kịch bản Perl để theo dõi tình hình truy cập đến bản sơ yếu lý lịch của ông trên mạng. </p> </section> <section id="syntax"> <h2>Cú pháp</h2> <p> PHP chỉ phân tích các đoạn mã nằm trong những dấu giới hạn của nó. Bất cứ mã nào nằm ngoài những dấu giới hạn đều được xuất ra trực tiếp không thông qua xử lý bởi PHP. Các dấu giới hạn thường dùng nhất là <?php và ?>. </p> </section> </body> </html>
Above is the basic information about the section tag in HTML5. In terms of display properties, it's like a div tag.