-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 771 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Angular2 Learning Project</title>
<link href="//cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h5 class="page-header text-center">Angular2 学习项目</h5>
<ul class="list-group">
<li class="list-group-item">
<a href="helloworld/index.html">你好,Angular2</a>
</li>
<li class="list-group-item">
<a href="routerdemo/index.html">Angular2 路由练习示例</a>
</li>
<li class="list-group-item">
<a href="spotifymusic/index.html">实战项目:Spotify音乐</a>
</li>
</ul>
</div>
</body>
</html>