Detailed explanation on the use of tag in html
The content that users see does not correspond to a specific page of this website.
Sample code:
The<html> <body> <article> <h5>HTML5 项目</h5> <p>HTML5是用于修正现在html的下一个网页规范</p> <p>HTML5是万维网结构方面的标准</p> </article> </body> </html>
article element represents independent, complete content in a document, page or application in website production that can be independently referenced. It can be a blog or newspaper article, a forum post, a user comment, or otherany independent content. In addition to the content section, an article element usually serves as its own title and sometimes its own footer.
The following is an example of the article element:
<article> <header> <h1>标题</h1> <p>发表日期:<time pubdate="pubdate">2011年7月10号</time></p> </header> <footer> <p>w3cmm 版权所有</p> </footer> </article>
The article element can be nested, and the inner content needs to be related to the outer content in principle. For example, in a blog post, comments on the article can be nested using article elements. The article element used to present the comments is included in the article element that represents the overall content.
The following is a code example about the article element:
<article> <header> <h1>标题</h1> <p>发表日期:<time pubdate="pubdate">2011年7月10号</time></p> </header> <section> <h2>评论</h2> <article> <header> <h3>张三的评论</h3> <p>12分钟前</p> </header> <p>……</p> </article> <article> <header> <h3>李四的评论</h3> <p>15分钟前</p> </header> <p>……</p> </article> </section> </article> </article>
The following is a look at the nested code of the article tag:
<article> <header> <h1>article标签使用方法</h1> <p>发表日期:<time pubdate="pubdate">2015/8/1</time></p> </header> <p>怎样使用article标签?</p> <section> <h2>评论</h2> <article> <header> <h3>www.00h5.com零零H5</h3> <p><time pubdate datetime="2015-8-1T:21-26:00">1小时前</time></p> </header> <p>不错!</p> </article> <article> <header> <h3>零零H5www.00h5.com</h3> <p><time pubdate datetime="2011-12-23T:21-15:00">小时</time></p> </header> <p>对article解释</p> </article> </section> </article>
The above is the detailed content of Detailed explanation on the use of

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.
