What are the new tags in html5? A brief introduction to the 13 new tags in html5

不言
Release: 2018-08-22 14:15:36
Original
4611 people have browsed it

本篇文章给大家带来的内容是关于html5中新增标签有哪些?html5中新增的13种标签的简单介绍,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

html5新增标签之HTML  标签

标签用来表示一个缩写词或者首字母缩略词,如"WWW"或者"NATO"。

html5新增标签之HTML  标签

标签为页面上的所有的相对链接规定默认 URL 或默认目标。

html5新增标签之HTML  标签

标签用来覆盖默认的文本方向(dir="ltr(左开始)rtl(右开始)")

html5新增标签之HTML  标签和HTML  标签

配合使用可以设置表格的每列公用样式
<table border="1">
  <colgroup>
    <col span="2" style="background-color:red">
    <col style="background-color:yellow">
  </colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
</table>
Copy after login

html5新增标签之HTML  标签

标签规定了 元素可能的选项列表, 使用连接。

html5新增标签之HTML 

 标签

标签可以将表单内的相关元素分组,会在相关表单元素周围绘制边框。 标签为
元素定义标题

html5新增标签之HTML 

 标签

标签定义文档或者文档的一部分区域的页脚,在典型情况下,该元素会包含文档创作者的姓名、文档的版权信息、使用条款的链接、联系信息等,在一个文档中,您可以定义多个
元素

html5新增标签之HTML 

 标签

标签定义文档或者文档的一部分区域的页眉。
元素应该作为介绍内容或者导航链接栏的容器。在一个文档中,您可以定义多个
元素。
标签不能被放在
或者另一个
元素内部。

html5新增标签之HTML 

 标签

标签被用来对标题元素进行分组。当标题有多个层级(副标题)时,
元素被用来对一系列 

 - 

 元素进行分组

html5新增标签之HTML 


 标签


标签定义 HTML 页面中的主题变化(比如话题的转移),并显示为一条水平线。


元素被用来分隔 HTML 页面中的内容(或者定义一个变化)。

html5新增标签之HTML 

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