TOC

HTML5 Boilerplate

可以保证跨浏览器兼容性的一套 HTML 模板,我决定将其应用在本站。

描述

维基百科中的描述如下:

HTML5 Boilerplate is an HTML, CSS and JavaScript template (or boilerplate) for creating HTML5 websites with cross-browser compatibility.

打开官网,可以看到如下描述:

  1. The web’s most popular front-end template
  2. HTML5 Boilerplate helps you build fast, robust, and adaptable web apps or sites. Kick-start your project with the combined knowledge and effort of 100s of developers, all in one little package.
  3. Save time. Create with confidence.

文件结构

下载地址:https://github.com/h5bp/html5-boilerplate/releases/download/v8.0.0/html5-boilerplate_v8.0.0.zip

C:\Users\Administrator\Downloads\html5-boilerplate_v8.0.0>tree /F
文件夹 PATH 列表
卷序列号为 5645-460E
C:.
│  .editorconfig
│  .gitattributes
│  .gitignore
│  .htaccess
│  404.html
│  browserconfig.xml
│  favicon.ico
│  humans.txt
│  icon.png
│  index.html
│  LICENSE.txt
│  package-lock.json
│  package.json
│  robots.txt
│  site.webmanifest
│  tile-wide.png
│  tile.png
│
├─css
│      main.css
│      normalize.css
│
├─doc
│      css.md
│      extend.md
│      faq.md
│      html.md
│      js.md
│      misc.md
│      TOC.md
│      usage.md
│
├─img
│      .gitignore
│
└─js
    │  main.js
    │  plugins.js
    │
    └─vendor
            modernizr-3.11.2.min.js

应用

其他

H5BP

这个组织似乎还有些别的项目,可以到他们的官网上了解。