41 lines
1.7 KiB
Markdown
41 lines
1.7 KiB
Markdown
![]() |
---
|
|||
|
title: CSS Framework Skeleton
|
|||
|
localeTitle: CSS Framework Skeleton
|
|||
|
---
|
|||
|
# CSS Framework Skeleton
|
|||
|
|
|||
|
Skeleton是一个简单的模板,可以启动任何响应式项目。
|
|||
|
|
|||
|
## 入门
|
|||
|
|
|||
|
这是一个简单的HTML模板,其中包含Skeleton库的最新编译和缩小的CSS。
|
|||
|
|
|||
|
```html
|
|||
|
|
|||
|
<!DOCTYPE html>
|
|||
|
<html lang="en">
|
|||
|
<head>
|
|||
|
<meta charset="utf-8">
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|||
|
<title>Skeleton Template</title>
|
|||
|
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
|
|||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.1.1/normalize.min.css">
|
|||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<h1>Hello World</h1>
|
|||
|
<!-- Add all HTML Code here -->
|
|||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
|||
|
</body>
|
|||
|
</html>
|
|||
|
```
|
|||
|
|
|||
|
[ **JSBin演示**](http://jsbin.com/sekojaxali/edit?html,output)
|
|||
|
|
|||
|
我们在此示例中使用了CDN,但您可以[在此处查看](https://github.com/dhg/Skeleton#getting-started)安装Skeleton的其他方法。
|
|||
|
|
|||
|
## 学习资源
|
|||
|
|
|||
|
*  Skeleton的[**`Official Documentation`**](http://getskeleton.com/#grid) 。
|
|||
|
* 结帐骨架的开源GitHub的仓库[在这里](https://github.com/dhg/Skeleton) 。
|
|||
|
* [以下](http://getskeleton.com/#examples)是一些如何在不同网站上使用Skeleton的示例。
|