-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
59 lines (49 loc) · 1.24 KB
/
help.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta id="viewport" name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0">
<title>帮助</title>
<style>
body{
background-color:#fff;
margin:0;
padding-bottom:10px;
font-family:Droid Sans Fallback, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.help{
background-color:#fff;
margin:10px 10px 0 10px;
border:1px solid #fff;
padding:8px;
border-radius:2px;
}
.question{
text-align:center;
color:#884cc0;
font-size:22px;
line-height:48px;
margin-bottom:4px;
}
.answer{
font-size:16px;
line-height:24px;
color:#666;
}
</style>
</head>
<body>
<div class="help">
<div class="question">帮助文档标题一</div>
<div class="answer"> 帮助文档文字一</div>
</div>
<div class="help">
<div class="question">帮助文档标题二</div>
<div class="answer"> 帮助文档文字二</div>
</div>
<div class="help">
<div class="question">帮助文档标题三</div>
<div class="answer"> 帮助文档文字三</div>
</div>
</body>
</html>