- From: Ash <ash@sch.bme.hu>
- Date: Fri, 31 Mar 2000 11:32:24 +0200
- To: <www-font@w3.org>
- Message-ID: <001201bf9af4$05d3fd60$74e24298@ripley>
Hello!
I have a very simple problem: I would like to embedd with CSS a special font for making dropcaps in my webpage, but somehow it doesn't want to work.
Here is my very short html source:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html">
<title>Test</title>
<STYLE TYPE="text/css">
@font-face {
font-family: EileenB;
src: url("images/eicbl___.ttf") format("opentype");
}
B { font-family: EileenB, fantasy;
font-size: 300% }
BODY { font-family: verdana, serif;
background: url("images/bground.jpg"); }
</STYLE>
</head>
<body>
<TABLE cellpadding="15" width="400">
<TR>
<TD width="20"><BR>
</TD>
<TD>
<TABLE align="LEFT" cellspacing="0" cellpadding="0">
<tr><td><b><font size="+6">B</font></b></td></tr>
</TABLE>
<font size=2 >
lahblahblahblahblahblah blahblahblah blahblahblah blahblah
</font>
</TD>
</TR>
</TABLE>
</body>
</html>
The interesting thing is that W3C CSS Validation Service told me it was correct, but is still doesn't want to show the capital B with that eicbl___.ttf font.
Can anyone help in what can be the problem?
Thanx,
Ash
Received on Friday, 31 March 2000 04:32:41 UTC