-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.67 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
<!doctype html>
<!-- 这个网页的文档类型,这个是html5的写法 -->
<html lang="en">
<!-- 这里的lang="en"可以删除,如果不删除的,用谷歌之类打开,它会认为是英文的,会自动给翻译(如果设置了自动翻译的话) -->
<head>
<meta charset="utf-8">
<!-- <meta> 元素可提供有关页面的元信息(meta-information),比如针对搜索引擎和更新频度的描述和关键词。 -->
<meta name="keywords" content="HTML5,Angular2,Bootstrap">
<!-- 可选 "keywords" 是一个经常被用到的名称。它为文档定义了一组关键字。某些搜索引擎在遇到这些关键字时,会用这些关键字对文档进行分类。 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- 网页自适应屏幕大小,不允许缩放 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- 指示服务器在发送实际的文档之前先在要传送给浏览器的 MIME 文档头部包含名称/值对。 -->
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<!-- 指定页面用webkit 内核 -->
<title>NiceFish</title>
<base href="/">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<!-- If you are not inside GFW,use CDN will be better.-->
<!-- <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> -->
<link href="assets/bootstrap-v3.3.7/bootstrap.min.css" rel="stylesheet">
<link href="assets/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<app-root><h1>Loading...</h1></app-root>
</body>
</html>