473,796 Members | 2,376 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

@font-face: please help

I thought it would be rather fun to try out @font-face, but I cannot get it
to work.

I used Microsoft WEFT to generate several embedded fonts and find that the
example
below works when I use my Win XP development machine as both the browser and
Web
server. However if I try to display the same page from another machine (Mac
OS X, Win 2000, or Win XP) using the Win XP development machine as the Web
server then I get the default font displayed rather than the downloaded one.
I have tried IE 5.1 (Mac), IE 6, Netscape 7, Opera, and Safari. I have
tried several different fonts too with the same results. I checked the
IIS logs on the Web server and the .eot files seem to have been
downloaded successfully (result 200 on the first attempt, 304 afterwards as
it is already loaded).

I notice that @font-face seems to have disappeared from the CSS 2.1 spec so
I am beginning to wonder if any browser actually supports it, not even Opera
where the CSS author is CTO.
I also posted this question on microsoft.publi c.siteserver.cs s but I found
this group afterwards and it has more activity so I am posting it here too.

I am also curious to know how extensively @font-face is supported and with
what font formats and if I am correct in my understanding that IE supports
only .eot files.

Surely I must doing something wrong? Thanks for any advice,

Clive
<html>
<style type="text/css">
@font-face { font-family: comix;
src: url("http://192.168.0.12/DOTNET/fonts/comicsa0.eot"); }
h2 { font-family: comix;
font-size: x-large;}
</style>
<body>
<h2>Hello World</h2>
</body>
</html>
Jul 20 '05 #1
4 4250
"Clive Everett" <eo********@mac .com> wrote:
I thought it would be rather fun to try out @font-face, but I
cannot get it to work.


It's hard to tell what might be wrong, and even to test what the
situation is, since you didn't post the URL of the test page. This is
one of the situations where a URL is _really_ worth more than a
thousand copies of page content, even if the copies are verbatim (they
usually aren't).

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Jul 20 '05 #2
In message <Nc************ *******@news1.n ews.adelphia.ne t>, Clive
Everett <eo********@mac .com> writes
I thought it would be rather fun to try out @font-face, but I cannot get it
to work.

I used Microsoft WEFT to generate several embedded fonts and find that the
example
below works when I use my Win XP development machine as both the browser and
Web
server. However if I try to display the same page from another machine (Mac
OS X, Win 2000, or Win XP) using the Win XP development machine as the Web
server then I get the default font displayed rather than the downloaded one.
I have tried IE 5.1 (Mac), IE 6, Netscape 7, Opera, and Safari. I have
tried several different fonts too with the same results. I checked the
IIS logs on the Web server and the .eot files seem to have been
downloaded successfully (result 200 on the first attempt, 304 afterwards as
it is already loaded).

I notice that @font-face seems to have disappeared from the CSS 2.1 spec so
I am beginning to wonder if any browser actually supports it, not even Opera
where the CSS author is CTO.
I also posted this question on microsoft.publi c.siteserver.cs s but I found
this group afterwards and it has more activity so I am posting it here too.

I am also curious to know how extensively @font-face is supported and with
what font formats and if I am correct in my understanding that IE supports
only .eot files.

Surely I must doing something wrong? Thanks for any advice,

Clive
<html>
<style type="text/css">
@font-face { font-family: comix;
src: url("http://192.168.0.12/DOTNET/fonts/comicsa0.eot"); }
h2 { font-family: comix;
font-size: x-large;}
</style>
<body>
<h2>Hello World</h2>
</body>
</html>


WEFT-produced .eot files work just fine on Internet Explorer.

Try this:

http://www.gododdin.demon.co.uk/ng/fonttest.htm

Did it look like:

http://www.gododdin.demon.co.uk/ng/FONTS.JPG

If it works OK with your browser, then you should see the first line in
Eaglefeather, the second line in a sans-serif font, and the rest of the
page in Garamond.

If it doesn't work, then the entire page will be in a sans-serif font --
as when seen in Opera.

Let me know which.

Initial thought:
When you created the fonts, did you set the numeric address so that the
server the fonts are to be downloaded from is 'an allowed root'?

regards.

--
Jake
Jul 20 '05 #3
Thank you so much. That was the problem, I had not set up WEFT properly and
so the only allowed root was localhost and not my IP address. I guess that
comes from trying to wing it through WEFT without reading the instructions
and I had assumed that as the font downloaded then it must be OK. Your page
worked perfectly so I copied your page and font and, as Microsoft intended,
it did not work locally so I knew my system was OK and it was, as you said,
a problem with how I had set up my font. I was intrigued by the poem; I
should have realized that there would be some Welsh accounts of the
Anglo-Saxon invasion.

I'm sorry I could not put my test page on the Internet; I have been told my
router's port forwarding isn't working and I need to check it out.

Thanks again,

Clive


"jake" <> wrote in message news:7e******** ******@gododdin .demon.co.uk...
In message <Nc************ *******@news1.n ews.adelphia.ne t>, Clive
Everett <eo********@mac .com> writes
I thought it would be rather fun to try out @font-face, but I cannot get itto work.

I used Microsoft WEFT to generate several embedded fonts and find that theexample
below works when I use my Win XP development machine as both the browser andWeb
server. However if I try to display the same page from another machine (MacOS X, Win 2000, or Win XP) using the Win XP development machine as the Webserver then I get the default font displayed rather than the downloaded one.I have tried IE 5.1 (Mac), IE 6, Netscape 7, Opera, and Safari. I have
tried several different fonts too with the same results. I checked the
IIS logs on the Web server and the .eot files seem to have been
downloaded successfully (result 200 on the first attempt, 304 afterwards asit is already loaded).

I notice that @font-face seems to have disappeared from the CSS 2.1 spec soI am beginning to wonder if any browser actually supports it, not even Operawhere the CSS author is CTO.
I also posted this question on microsoft.publi c.siteserver.cs s but I foundthis group afterwards and it has more activity so I am posting it here too.
I am also curious to know how extensively @font-face is supported and withwhat font formats and if I am correct in my understanding that IE supportsonly .eot files.

Surely I must doing something wrong? Thanks for any advice,

Clive
<html>
<style type="text/css">
@font-face { font-family: comix;
src: url("http://192.168.0.12/DOTNET/fonts/comicsa0.eot"); }
h2 { font-family: comix;
font-size: x-large;}
</style>
<body>
<h2>Hello World</h2>
</body>
</html>


WEFT-produced .eot files work just fine on Internet Explorer.

Try this:

http://www.gododdin.demon.co.uk/ng/fonttest.htm

Did it look like:

http://www.gododdin.demon.co.uk/ng/FONTS.JPG

If it works OK with your browser, then you should see the first line in
Eaglefeather, the second line in a sans-serif font, and the rest of the
page in Garamond.

If it doesn't work, then the entire page will be in a sans-serif font --
as when seen in Opera.

Let me know which.

Initial thought:
When you created the fonts, did you set the numeric address so that the
server the fonts are to be downloaded from is 'an allowed root'?

regards.

--
Jake

Jul 20 '05 #4
In message <NE************ *******@news1.n ews.adelphia.ne t>, Clive
Everett <eo********@mac .com> writes
Thank you so much. That was the problem, I had not set up WEFT properly and
so the only allowed root was localhost and not my IP address. I guess that
comes from trying to wing it through WEFT without reading the instructions
and I had assumed that as the font downloaded then it must be OK. Your page
worked perfectly so I copied your page and font and, as Microsoft intended,
it did not work locally so I knew my system was OK and it was, as you said,
a problem with how I had set up my font.
Yes, that seemed the most likely explanation as I was unable to run your
script locally -- not having the .eot files on the server was the only
other possibility.

Font embedding works well, although I've found that if used for
headings, a .gif graphics file equivalent tends to be smaller than an
embedded subset -- although if you change its background colour, you
don't have to reproduce the graphic.

It's a very useful tool to have in your armoury when circumstances
dictate.
I was intrigued by the poem; I
should have realized that there would be some Welsh accounts of the
Anglo-Saxon invasion.
I usually use it if I need a lot of body text for testing:
(a) It's in English, not Latin ;-)
(b) It's a 19th century translation, so out of copyright.

It's an interesting poem -- a collection of eulogies for the fallen
Celtic heroes from all over Britain at the battle of Catraeth -- fought
around AD600 in a vain attempt to hold back the English colonisation of
Britain in the centuries following the breakdown of Roman government.

It also has the first written reference to 'King' Arthur -- although the
oldest copies are from the middle ages and we don't know whether it got
added in by the monks who did the copying at that time ;-)


I'm sorry I could not put my test page on the Internet; I have been told my
router's port forwarding isn't working and I need to check it out.

Thanks again,

Clive

[snip]

Regards.
--
Jake
Jul 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
6561
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help Workshop program: hcw.exe that's included with Visual Basic. This exact same file compiled perfectly with no notes, warnings or errors prior to reformatting my system. Prior to the reformatting, I copied the help.rtf file onto a CD and checked the box to...
3
1812
by: Jim Doughty | last post by:
When reading lines of html text from a file, I'm trying to match the following, I'm trying to match on a string of 6 numbers, delimited by hyphens. e.g. 2-19-23-27-29-40 The following code fails to match, and so do may different variants. if($inline !~ /((\d?\-){5}(\d?))/ ){ exit(-1); }
6
4355
by: wukexin | last post by:
Help me, good men. I find mang books that introduce bit "mang header files",they talk too bit,in fact it is my too fool, I don't learn it, I have do a test program, but I have no correct doing result in any way. Who can help me, I thank you very very much. list.cpp(main program) //-------------------------------------------------------------------------- - #pragma hdrstop #pragma argsused
5
3003
by: Craig Keightley | last post by:
Please help, i have attached my page which worksin IE but i cannnot get the drop down menu to fucntion in firefox. Any one have any ideas why? Many Thanks Craig <<<<<<<<<<<<<<CODE>>>>>>>>>>>>>>>> <html>
3
3367
by: Colin J. Williams | last post by:
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With numarray, help gives unhelpful responses:
7
5392
by: Corepaul | last post by:
Missing Help Files When I enter "recordset" as the keyword and search the Visual Basic Help index, I get many topics of interest in the resulting list. But there isn't any information available from clicking on many of the available topics (mostly methods but some properties are also unavailable). This same problem occurs with many, if not most, keywords. Is there any way I can activate these "missing" help topics? HELP!
5
3281
by: Steve | last post by:
I have written a help file (chm) for a DLL and referenced it using Help.ShowHelp My expectation is that a developer using my DLL would be able to access this help file during his development time using "F1" help within the VB IDE. Is this expectation achievable In trying to test my help file in the IDE, I have a solution with 2 projects: the DLL and a tester. VB does not look for my help file; instead, it looks for path to my source code...
8
3238
by: Mark | last post by:
I have loaded Visual Studio .net on my home computer and my laptop, but my home computer has an abbreviated help screen not 2% of the help on my laptop. All the settings look the same on both including search the internet for help, but the help is worthless. Any ideas?
10
3369
by: JonathanOrlev | last post by:
Hello everybody, I wrote this comment in another message of mine, but decided to post it again as a standalone message. I think that Microsoft's Office 2003 help system is horrible, probably the worst I ever seen. I almost cannot find anything I need, including things I
7
2374
by: gubbachchi | last post by:
Hi all, In my application I need to display the data fetched from mysql database after the user selects date from javascript calender. I have written the code in which after the user selects the date from calender and clicks search button it will fetch data from database. But what I need is as soon the user clicks the date, it should fetch data for that date from database. How to do it. Here is the code I am using <html> <script...
0
9679
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9527
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10453
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10223
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10172
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10003
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6785
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5573
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2924
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.