Skip to content

Commit fffd190

Browse files
adding basic web font example
1 parent 4180cc9 commit fffd190

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

web-fonts/VeraSeBd.ttf

57.4 KB
Binary file not shown.

web-fonts/basic-web-font.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<html>
2+
<head>
3+
<title>Web Font Sample</title>
4+
<style type="text/css" media="screen, print">
5+
@font-face {
6+
font-family: "Bitstream Vera Serif Bold";
7+
src: url("VeraSeBd.ttf");
8+
}
9+
10+
body { font-family: "Bitstream Vera Serif Bold", serif }
11+
</style>
12+
</head>
13+
<body>
14+
This is Bitstream Vera Serif Bold.
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)