-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
34 lines (33 loc) · 931 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>index</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
*{ padding: 0; margin: 0; }
ul{ list-style: none; }
a{ text-decoration: none; }
#page{ display: flex; flex-direction: column; height: 100%; min-height: 600px;}
#page header{ height: 33px; text-align: center; }
#urls{ flex: 1; }
#urls li{ height: 22px; text-align: center; }
</style>
</head>
<body>
<div id="page">
<header>
demo列表
</header>
<section id="urls">
<ul>
<li><a href="demos/ng-expander.html">expander</a></li>
<li><a href="demos/ng-accordation.html">accordation</a></li>
<li><a href="demos/http.html">http</a></li>
<li><a href="demos/httpService.html">httpService</a></li>
<li><a href="bookstore/index.html">bookstore</a></li>
</ul>
</section>
</div>
</body>
</html>