-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.88 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html><!-- html5 doctype -->
<!--
MyWebBoot A simple set of standard templates to quickly begin to build a web page
power by shuyi.wu
free to use
-->
<!-- modernizr处理各版本IE -->
<!--[if lt IE 7 ]> <html class="ie ie6 ie-lt10 ie-lt9 ie-lt8 ie-lt7 no-js" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="ie ie7 ie-lt10 ie-lt9 ie-lt8 no-js" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 ie-lt10 ie-lt9 no-js" lang="en"> <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 ie-lt10 no-js" lang="en"> <![endif]-->
<!--[if gt IE 9]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<!-- 字符集编码 -->
<meta charset="utf-8">
<!-- 兼容性模式 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- 页面标题 -->
<title></title>
<!-- 作者 -->
<meta name="author" content="shuyi.wu" />
<!-- 页面内容简介 有助于搜索引擎分析 -->
<meta name="description" content="" />
<!-- 所属 -->
<meta name="Copyright" content="wushuyi" />
<!-- 移动端视图 -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 页面标题图标 -->
<link rel="shortcut icon" href="favicon.ico" />
<!-- css头部加载 有助于 浏览器 渲染 -->
<link rel="stylesheet" href="assets/css/reset.css" /><!-- css 重置 -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- modernizr 用于处理 各浏览器 兼容 因为要 处理css样式兼容 所以 头部加载 -->
<script src="assets/libs/modernizr/2.8.3/modernizr.min.js"></script>
</head>
<body>
<!-- 为何要用这个 div? 请看http://camendesign.com/code/developpeurs_sans_frontieres -->
<div class="wrapper">
</div>
<!-- js 紧贴</body> 页面渲染完成 后处理 js 有助于 加快 页面响应速度 -->
<script src='assets/libs/jquery/1.11.2/jquery.min.js'></script>
<script src="assets/js/functions.js"></script>
</body>
</html>