-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen-Android.html
68 lines (65 loc) · 1.82 KB
/
en-Android.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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Font weight test</title>
<link rel="stylesheet" href="/css/harmonise.css" media="all" type="text/css" />
<style type="text/css">
.test p {
font-size: 27px;
line-height:1.333;
font-family:Roboto,"Noto Sans CJK TC", "Noto Sans TC", Helvetica, Arial, sans-serif;
margin:0;
}
#one {
font-weight:100;
}
#two {
font-weight:200;
}
#three {
font-weight:300;
}
#four {
font-weight:400;
}
#five {
font-weight:500;
}
#six {
font-weight:600;
}
#seven {
font-weight:700;
}
#eight {
font-weight:800;
}
#nine {
font-weight:900;
}
b {
font-weight:bold;
}
#example {
font-weight:100;
margin-top:1.333em;
}
</style>
</head>
<body>
<h1>Font-weight test case</h1>
<hr />
<div class="test">
<p id="one">100 · Do Androids Dream of Electric Sheep? 仿生人會夢見電子羊嗎?</p>
<p id="two">200 · Do Androids Dream of Electric Sheep? 仿生人會夢見電子羊嗎?</p>
<p id="three">300 · Do Androids Dream of Electric Sheep? 仿生人會夢見電子羊嗎?</p>
<p id="four">400 · Do Androids Dream of Electric Sheep? 仿生人會夢見電子羊嗎?</p>
<p id="five">500 · Do Androids Dream of Electric Sheep? 仿生人會夢見電子羊嗎?</p>
<p id="six">600 · Do Androids Dream of Electric Sheep? 仿生人會夢見電子羊嗎?</p>
<p id="seven">700 · Do Androids Dream of Electric Sheep? 仿生人會夢見電子羊嗎?</p>
<p id="eight">800 · Do Androids Dream of Electric Sheep? 仿生人會夢見電子羊嗎?</p>
<p id="nine">900 · Do Androids Dream of Electric Sheep? 仿生人會夢見電子羊嗎?</p>
<p id="example">這是一個 light sentence,然而中間有一個<b>加粗 Bold</b>的單詞。</p>
</div>
</body>
</html>