-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicon-font-test.html
34 lines (29 loc) · 1.08 KB
/
icon-font-test.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
<!doctype html>
<html lang=en >
<head>
<title>Howdy</title>
<meta charset=utf-8 />
<style>
@font-face {
font-family: "streamline-30px-filled-in";
src:url("images/Streamline-Icon-Fonts/streamline-30px-filled-in/fonts/streamline-30px-filled-in.eot");
src:url("images/Streamline-Icon-Fonts/streamline-30px-filled-in/fonts/streamline-30px-filled-in.eot?#iefix") format("embedded-opentype"),
url("images/Streamline-Icon-Fonts/streamline-30px-filled-in/fonts/streamline-30px-filled-in.woff") format("woff"),
url("images/Streamline-Icon-Fonts/streamline-30px-filled-in/fonts/streamline-30px-filled-in.ttf") format("truetype"),
url("images/Streamline-Icon-Fonts/streamline-30px-filled-in/fonts/streamline-30px-filled-in.svg#streamline-30px-filled-in") format("svg");
font-weight: normal;
font-style: normal;
}
body {
font-family:"streamline-30px-filled-in";
}
</style>
</head>
<body>
<script>
var info = document.body.appendChild( document.createElement( 'div' ) );
info.innerHTML = '<h1>' + document.title + '</h1>' +
'<div id=msg >12345 67890</div>';
</script>
</body>
</html>