-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
41 lines (37 loc) · 1.58 KB
/
template.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
<!DOCTYPE html>
<!--指明当前的页面使用的语言环境-->
<html lang="zh-CN">
<head>
<!--指明当前页面的字符编码格式 是 utf-8 -->
<meta charset="utf-8">
<!--指明当前的页面在IE浏览器渲染的时候使用最新的渲染引擎来渲染-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--标准的视口设置-->
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<title>Template</title>
<!-- Bootstrap -->
<!--bootstrap 核心css文件 -->
<link href="lib/bootstrap/css/bootstrap.css" rel="stylesheet">
<!--
在IE8一下都不支持 html5标签和媒体查询 引入两js插件
html5shiv 支持HTML5标签
respond 支持媒体查询 必须在http形式下访问才有用
-->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="lib/html5shiv/html5shiv.min.js"></script>
<script src="lib/respond/respond.js"></script>
<![endif]-->
</head>
<body>
<!--TODO-->
<!--bootstrap是依赖jquery的-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="lib/jquery/jquery.min.js"></script>
<!--bootstrap的核心js文件-->
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="lib/bootstrap/js/bootstrap.js"></script>
</body>
</html>