HTML5规范-相关资料链接(大多都是英文文档)
- 网站做的更规范,尽量选择正确的HTML5结构元素。地址:http://html5doctor.com/happy-1st-birthday-us/#flowchat
- 了解算法和分块 知道文档刚要看上去是什么样子,不仅可以帮助你确定使用哪个标题层级,而且还可以帮助确定使用哪个结构性元素。比如section应该有一个自身标题。查文档纲要,可以显示出你是否忘记了包含一个标题,他可能提醒你重新考虑这个元素是否最适合于你的内容。此外,准备的反映内容层级的文档纲要,有助于辅助设备的用户在你的站点上导航。地址:https://developer.mozilla.org/en/Sections_and_Outlines_of_an_HTML5_document
- 了解各浏览器对HTML5支持情况参考:http://caniuse.com/#cats=HTML5
- 想要自己的web网站上的控件的用户体验得到更精细的控制。参见:Modernizr网站的官方文档:http://www.modernizr.com/docs 其产品版是一个定制的编译版,他只对你的站点和web应用程序进行必要的HTML测试
- 了解HTML5 Boilerplate工作模板,能更好的帮助你学习搭建一个网站。HTML5 Boilerplate的官方指南:http://net.tutsplus.com/tutorials/html-css-techniques/the-official-guide-to-html-boilerplate/ 下载模板地址:https://github.com/paulirish/html5-boilerplate
- 验证HTML5是否有错,W3C的”Unicorn“ Unified验证器,可验证HTML5和CSS 地址:http://validator.w3.org/unicorn/
HTML5规范-相关资料链接(大多都是英文文档)的更多相关文章
- python相关资料链接
后续的博客更新,会涉及到很多的python及python的框架相关的内容,这里将自己收藏的一些关于python相关资料的链接做一个整理,算是一个导航索引吧... PS:其中有些链接对应的技术团队文章, ...
- hadoop的相关资料链接
hadoop的资料整理博客 http://www.itpub.net/thread-1588509-1-1.html
- Android Studio相关资料链接
AndroidStudio中文社区:http://www.android-studio.org/index.php Android studio删除工程项目:http://www.linuxid ...
- Linux内核协议栈相关资料链接
1.Linux内核网络分析(个人博客集合,分析较清晰) http://blog.csdn.net/qy532846454/article/category/1385933/2
- Calico相关资料链接
部署calico的两个yaml文件: kubectl apply -f http://docs.projectcalico.org/v2.3/getting-started/kubernetes/in ...
- flannel相关资料链接
1.DockOne技术分享(十八):一篇文章带你了解Flannel http://dockone.io/article/618 2.理解Kubernetes网络之flannel网络http://ton ...
- Neutron相关资料链接
1.OpenStack Neturon 官方文档: https://docs.openstack.org/mitaka/networking-guide/ 2.Neturon理解系列文章: http: ...
- kubernetes,Docker网络相关资料链接
1.Why kubernetes not doesn't use libnetwork http://blog.kubernetes.io/2016/01/why-Kubernetes-doesnt- ...
- Spring Cloud 相关资料链接
Spring Cloud中文网:https://springcloud.cc/ Spring Cloud API:https://springcloud.cc/spring-cloud-dalston ...
随机推荐
- Oracle Sales Cloud:管理沙盒(定制化)小细节2——使用对象触发器更新数字字段
在上一篇 "管理沙盒(定制化)小细节1" 的随笔中,我们使用公式法在 "业务机会" 对象(单头)上建立了 "利润合计" 字段,并将它等于 & ...
- View and Data API Tips : Conversion between DbId and node
By Daniel Du In View and Data client side API, The assets in the Autodesk Viewer have an object tree ...
- 【代码笔记】iOS-字体抖动动画
一,效果图. 二,代码. ViewController.m #import "ViewController.h" @interface ViewController () @end ...
- C#Winform连接Oracle数据库
转载▼ http://blog.sina.com.cn/s/blog_900ca29d0102vn3r.html 一.连接方法 (1)System.Data.OracleClient 注意1:此方法在 ...
- javaweb项目jsp跳转servlet Error instantiating servlet class 问题
问题: HTTP Status 500 - Error instantiating servlet class RecommenderServlet type Exception report mes ...
- java Future 接口介绍
(转自:http://blog.csdn.net/yangyan19870319/article/details/6093481) 在Java中,如果需要设定代码执行的最长时间,即超时,可以用Java ...
- [转]Asp.Net Core 简单的使用加密的Cookie保存用户状态
本文转自:http://www.cnblogs.com/Joes/p/6023820.html 在以前的Asp.Net中可以用 FormsAuthentication 类的一系列方法来使用加密的Coo ...
- 编程语言吉祥物之Duke
在看到这个可爱的小家伙前,我一直以为那个咖啡杯子是Java的吉祥物.直到拿到<Java性能优化权威指南>这本书,才知道有这个小东西Duke.这位可爱的Duke是由Joe Palrang在1 ...
- BZOJ 1565: [NOI2009]植物大战僵尸
1565: [NOI2009]植物大战僵尸 Time Limit: 10 Sec Memory Limit: 64 MBSubmit: 2317 Solved: 1071[Submit][Stat ...
- Combinations
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. For exampl ...