-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocument.html
71 lines (60 loc) · 1.43 KB
/
document.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>Fanx</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="common.css"/>
<link rel="stylesheet" type="text/css" href="index.css"/>
<style type="text/css">
.content a {
color: #666;
text-decoration:none;
font-size:1.5em;
}
.content .doc {
background: #eee;
padding: 30px;
margin: 30px;
}
</style>
</head>
<body>
<div id="header">
<div class="sitebar">
<ul>
<li>
<a href='index_zh.html'>首页</a>
</li>
<li>
<a href='download.html'>下载</a>
</li>
<li>
<a href='document.html'>文档</a>
</li>
<li>
<a href='community_zh.html'>社区</a>
</li>
</ul>
</div>
</div>
<div class="content">
<h3>Fanx文档</h3>
<p class="doc">
<a href='doc/start.html'>快速开始</a>
</p>
<p class="doc">
<a href='doc/language.html'>Fanx语言语法</a>
</p>
<p class="doc">
<a href='doc/client.html'>移动端/前端开发</a>
</p>
<p class="doc">
<a href="doc/server.html">服务端开发</a>
</p>
<p class="doc">
<a href="apidoc/index.html">API文档</a>
</p>
</div>
</body>
</html>