-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
76 lines (72 loc) · 1.4 KB
/
template.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
72
73
74
75
76
<!DOCTYPE html>
<html lang="zh">
<head>
<meta content="png"/>
<meta content="Landscape"/>
<meta charset="utf-8"/>
<title>Document</title>
</head>
<style>
@font-face {
font-family: HarmonyOS Hans;
src: url("./HarmonyOS_Sans_SC_Regular.ttf");
}
* {
margin: 0;
padding: 0;
font-family: "HarmonyOS Hans", serif;
}
html,
body {
width: 350px;
padding: 5px;
}
li {
list-style: none;
}
.Drops {
color: green;
}
</style>
<body>
<div>
<h2>击杀简介</h2>
</div>
<div style="padding-bottom: 5px;">
<ul>
<li>船型:ship</li>
<li>击杀时间:time</li>
<li>击杀位置:location</li>
<li>总价值:total_value</li>
<li>掉落价值:drop</li>
</ul>
</div>
<hr/>
<div>
<h2>击杀详情</h2>
</div>
<div style="padding-bottom: 5px;">
<ul>
<li>受害人:victim_name</li>
<li>受害人军团:victim_corp</li>
<li>受害人联盟:victim_alli</li>
</ul>
</div>
<div style="padding-bottom: 5px;">
<ul>
<li>击杀人:perpetrator_name</li>
<li>击杀人军团:perpetrator_corp</li>
<li>击杀人联盟:perpetrator_alli</li>
</ul>
</div>
<hr/>
<div>
<h2>携带装备</h2>
</div>
<div style="padding-bottom: 5px;">
<ul>
equipments
</ul>
</div>
</body>
</html>