HTML5 Fundamental Syntax
HTML5 Fundamental Syntax
*/-->
HTML5 Fundamental Syntax
1 Adding Document Structure with HTML5’s New Elements
1.1 header
Is used to contain the headline(s) for a page and/or section . It can also contain
supplemental information such as logos and navigational aids.
1.2 footer
Contains information about a page and/or section , such as who wrote it, links to
related information, and copyright statements.
1.3 nav
Contains the major navigation links for a page and, while not a requirement, is
often contained by header .
1.4 aside
Contains information that is related to the surrounding content but also exists
independently, such as a sidebar or pull-quotes.
1.5 section
The section element is not a generic container element. When an element is needed only for styling purposes or as a convenience for scripting, authors are encouraged to use the div element instead. A general rule is that the section element is appropriate only if the element's contents would be listed explicitly in the document's outline.
1.6 article
Is used for self-contained content that could be consumed independently of the page as a whole, such as a blog entry.
1.7 Modifying the Document Outline
You have a primary page title and tagline marked up with headings ( h1 and h2 , respec-tively), but you don’t want the tagline included in your document outline.
<hgroup>
<h1>HTML5, for Fun & Profit</h1>
<h2>Tips, Tricks and Resources</h2>
</hgroup>
In this example, only /h1/(the largest headline of those headlines) will be shown on the Document Outline.
2 Text
2.1 Emphasizing Text
You want to add emphasis or emphatic stress to text content.
<p>My name is <em>Jane</em>, not John.</p>
2.2 Adding Importance to Text
You want to indicate a span of text that is important.
<p><strong>Adding Importance to Text</strong></p>
2.3 Highlighting Text for Reference
You want to highlight the search term(s) in a list of search results.
<p><mark>Highlighting Text</mark></p>
2.4 Marking Up Small Print
You want to offset a legal disclaimer and copyright statement as small print.
<p><small>Small Print</small></p>
2.5 Defining Acronyms and Abbreviations
You want to provide expanded definitions for acronyms and abbreviations.
<p>I love working with <abbr title="Accessible Rich Internet Applications">ARIA</abbr> Roles</p>
<p>I love working with <acronym title="Accessible Rich Internet Applications">ARIA</acronym> Roles</p><!--Not Support-->
3 Adding Links to Block-Level Content
You want to wrap your site logo and main heading with a single hyperlink.
<a href="http://www.baidu.com">
<h1>HTML5, for Fun & Profit</h1>
<img src="img/logo.png" alt="HTML5 for Fun and Profit" />
</a>
4 Marking Up Figures and Captions
You want to include an illustration with a caption on your web page.
<figure>
<img src="img/logo.png" alt="The logo of HTML5" />
<figcaption>The logo of HTML5</figcaption>
</figure>
5 Marking Up Dates and Times
You want to encode date-time content for machines, but still retain human readability.
<p>Published: <time datetime="2011-01-15" pubdate>January 15, 2011</time></p>
<p>The class starts at <time datetime="08:00">8:00 am</time>.</p>
<p>Registration opens on <time datetime="2011-01-15T08:00-07:00">January 15, 2011 at 8:00 am, Mountain Time</time>.</p>
<p>Published: <time>2011-01-15</time></p>
I don't see what the diffience within an without <time>.
6 Setting the Stage for Native Expanding and Collapsing
You want to provide content that can expand and collapse with user focus (once browsers support it).
<details>
<summary>Upcoming Topics</summary>
<p>For the new year, we have a great line up of articles!</p>
<ul>
<li>Understanding the Outline Algorithm</li>
<li>When to Use <code>hgroup</code></li>
<li>Machine Semantics with Microdata</li>
</ul>
</details>
7 Controlling the Numbering of Your Lists
You want an ordered list to have numbering different than the default of starting with 1.
<ol start="2">
<li>Apple</li>
<li>Bananas</li>
<li>Oranges</li>
</ol>
8 Hiding Content to Show Later
You have content that you want to hide until after a user logs in.
<p hidden>You wouldn't see me if you don't log in.</p>
9 Making Portions of a Page Editable
You want to allow users to directly edit content in the browser.
<article contenteditable>
<h2>Stop <code>section</code> Abuse!</h2>
<p>As the most generic of the HTML5 structural elements, <code>section</code>
is often incorrectly used as a styling container, when <code>div</code> is more appropriate.</p>
</article>
10 Setting the Stage for Native Drag-and-Drop
You want to allow users to drag and drop content on your web page.
<h2 draggable="true">Block-Level Links</h2>
HTML5 Fundamental Syntax的更多相关文章
- 免费的HTML5连载来了《HTML5网页开发实例详解》连载(三)DOCTYPE和字符集
在2.1.2节中通过新老DOCTYPE的对比,读者可以清晰地看到HTML 5在精简旧有结构上做出的努力.DOCTYPE在出现之初主要用于XML中,用作描述XML允许使用的元素.属性和排列方式.起初HT ...
- 自由HTML5串行来到《HTML5具体解释Web开发的例子》连载(三)DOCTYPE和字符集
于2.1.2通过新老科DOCTYPE控制,读者可以清晰地看到HTML 5精简旧体制的努力取得. DOCTYPE主要用于在开始的情况下,XML于,用作叙述性说明XML同意使用的元素.物业和安排.起初HT ...
- 如何编写规范,灵活,稳定,高质量的HTML和css代码
黄金定律 永远遵循同一套编码规范,不管有多少人共同参与同一项目,一定要确保每一行代码都像是同一个人编写的. 语法: 1.用两个空格来代替制表符(tab);2.嵌套元素应当缩进一次(两个空格); 3.对 ...
- (转)rvm安装与常用命令
rvm是一个命令行工具,可以提供一个便捷的多版本ruby环境的管理和切换. https://rvm.io/ 如果你打算学习ruby/rails, rvm是必不可少的工具之一. 这里所有的命令都是再用户 ...
- Google HTML/CSS Style Guide
转自: http://google.github.io/styleguide/htmlcssguide.xml Google HTML/CSS Style Guide Revision 2.23 Ea ...
- File handling in Delphi Object Pascal(处理record类型)
With new users purchasing Delphi every single day, it’s not uncommon for me to meet users that are n ...
- 简介 jCanvas:当 jQuery遇上HTML5 Canvas
https://github.com/caleb531/jcanvas HTML5 可以直接在你的网页中使用 <canvas> 元素及其相关的 JavaScript API绘制的图形. 在 ...
- HTML5.dcloud.io-stream-app
dcloud.io提出的Stream App 本文仅仅是关于dcloud.io提出的SteamApp初探,所有内容请参考其官网. 1. Application promotion by scaning ...
- Html5 postMessage
解释: 跨文档消息传输Cross Document Messaging. 编写代码前注意判断浏览器是否支持Html5 实例: b页面向a页面发送消息. <!DOCTYPE> <htm ...
随机推荐
- 目录服务不能与此服务器复制,因为距上一次与此服务器复制的时间已经超过了 tombstone 生存时间。
1.PDC数据正常 2.其他DC无法复制,报如下错误:目录服务不能与此服务器复制,因为距上一次与此服务器复制的时间已经超过了 tombstone 生存时间. 3.直接强制复制即可 repadmin / ...
- python + selenium +win32gui + winspy 实现图片上传
过程:模拟点击上传按钮,打开Windows对话框,编辑栏输入文件路径(或网址)点击确定.网上随便找了一个进行测试. 点击后出现Windows上传对话框 用 winspy 来检测窗口的句柄 python ...
- (2)关于opencv解压
关于opencv解压,一定不能解压到你的C盘的 ProgramFile(x86)中,不然,你肯定不会成功,你要放在C盘的其他文件夹,或者是别的盘中 就是因为这一个错误,我弄了一天,哎哎,时间宝贵啊
- docker入门2---docker的初体验
Tomxin7 Simple, Interesting | 简单,有趣 第一个Docker镜像? 尝试运行docker自带的镜像"hello-world",了解docker镜像的下 ...
- 2.Git基本配置
用户名和邮箱地址是本地git客户端的一个变量 . 用户每次提交代码都会记录用户名和邮箱 . 设置git的用户和邮箱git config [--local | --global | --system] ...
- ZJNU 2340/2341/2343 - 罗小黑的“礼物”Ⅰ/Ⅱ/Ⅲ
把一位数.两位数.三位数……这些所在的范围分开判断 可得1~9这些数范围在[1,9]内 10~99内共有90个数,每个数占两位,所以共有180位在,范围在[10,189]内 同理,100~999内共有 ...
- Cracking Digital VLSI Verification Interview 第四章
目录 Hardware Description Languages Verilog SystemVerilog 对Cracking Digital VLSI Verification Intervie ...
- Elasticsearch节点类型
当我们启动Elasticsearch的实例,就会启动至少一个节点.相同集群名的多个节点的连接就组成了一个集群. 在默认情况下,集群中的每个节点都可以处理http请求和集群节点间的数据传输,集群中所有的 ...
- 吴裕雄--天生自然 PYTHON3开发学习:元组
tup1 = ('Google', 'Runoob', 1997, 2000) tup2 = (1, 2, 3, 4, 5, 6, 7 ) print ("tup1[0]: ", ...
- SYN洪泛(dos)攻击和DDOS攻击
在TCP三次握手中,服务器为了响应一个收到的SYN,分配并初始化连接变量和缓存,然后服务器发送一个SYNACK进行响应,并等待来自客户的ACK报文段,如果客户不发送ACK来完成该三次握手,最终,服务器 ...