Skip to content

Instantly share code, notes, and snippets.

View ourai's full-sized avatar
🤟
I ♥ OSS

Ourai L. ourai

🤟
I ♥ OSS
View GitHub Profile
@ourai
ourai / html_spec.md
Last active December 15, 2015 22:39
简单的 HTML 编码规范

HTML 规范

需要注意的几个点

  1. doctype 用html,这样大部分浏览器是激活的标准模式
  2. 标签都用小写
  3. html标签上要通过lang指定页面语言(中文、英文等)
  4. head标签中用meta指定页面的编码charset
  5. 把外联 CSS 在head标签中引入
  6. 把外联 JavaScript 在body标签最底部引入