-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdemo.html
50 lines (45 loc) · 1.24 KB
/
demo.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>@font-face Demo</title>
<link rel="stylesheet" href="fonts.css" type="text/css" charset="utf-8" />
<style type="text/css">
body {
background-color:white;
font-family:Verdana,Tahoma,Arial,Sans-Serif;
color:black;
font-size:12px;
}
.demo
{
font-family:'Conv_icomoon',Sans-Serif;
width:800px;
margin:10px auto;
text-align:left;
border:1px solid #666;
padding:10px;
}
.hint
{
font-family:'Conv_Sansus Webissimo-Regular',Sans-Serif;
width:800px;
margin:10px auto;
text-align:left;
border:1px;
padding:10px;
}
</style>
</head>
<body>
<div class="demo" style="font-size:25px">
The quick brown fox jumps over the lazy dog.
</div>
<br>
<br>
<div class="hint">
<a href="http://www.font2web.com/searchfreewebfont.php?icomoon">Recommended: Click here to get a fast, optimized webfont alternative of icomoon!</a><br><br>
Tip: Click on the purple <strong>Sign Up for Free!</strong> button and then click on the <strong>FREE PLAN</strong> link.
</div>
</body>
</html>