-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
55 lines (49 loc) · 1.42 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>Bitter @font-face demo</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="bitter.css" type="text/css" />
<style>
body {
padding: 20px;
color: #222;
background: #fff;
}
span { display: block; }
.font-demo {
display: inline-block;
margin: 5px 0 20px;
padding: 10px;
border: 1px dotted #555;
font-family: 'Bitter';
font-size: 24px;
}
</style>
</head>
<body>
<h1>Bitter @font-face demo</h1>
<div style="margin-bottom:20px">
<iframe src="http://ghbtns.com/github-btn.html?user=FontFaceKit&repo=bitter&type=watch&count=true"
style="width:110px;height:20px;border:0"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=FontFaceKit&repo=bitter&type=fork&count=true"
style="width:95px;height:20px;border:0"></iframe>
</div>
<span>Normal 400</span>
<div class="font-demo">
AaBbCcDdEeFfGgHhJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz
</div>
<span>Normal 400 Italic</span>
<div class="font-demo" style="font-style:italic">
AaBbCcDdEeFfGgHhJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz
</div>
<span>Bold 700</span>
<div class="font-demo" style="font-weight:700">
AaBbCcDdEeFfGgHhJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz
</div>
<span>Bold 700 Italic</span>
<div class="font-demo" style="font-weight:700;font-style:italic">
AaBbCcDdEeFfGgHhJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz
</div>
</body>
</html>