Welcome Guest ( Log In | Register )



2 Pages V   1 2 >  
Reply to this topicStart new topic
> Help With Fonts
m3ch4
post May 1 2005, 11:42 PM
Post #1


Advanced Member
Group Icon

Group: Members
Posts: 112
Joined: 29-April 05
Member No.: 4,527



Hey there, I've been slowly studying up on html while I earn enough credits to get a page and I've run across two curious points to do with fonts and questions about them.

You can use your own fonts, but unless a visitor has the font you specify in your source code, they won't see it, but you cann't upload a font to where you upload your site page files and reference it there...does anyone know why this is?

And secondly, I have yet to run across a list of fonts that are loaded by default on various operation systems. Does a list of fonts that automatically get installed with various OS' exsist somewhere? and if so, can you post links here to them?

thanks
Go to the top of the page
 
+Quote Post
Dream
post May 2 2005, 12:25 AM
Post #2


Advanced Member
Group Icon

Group: Members
Posts: 138
Joined: 17-April 05
Member No.: 4,102



umm the fonts won't read because the users don't have them, therefore they can't see your font (catch-22) at least that is what I think you are asking about.

To circumwent this problem, make your buttons into .gif files (or any other image file) and slice and code them. That way the users can see the cool font even if they don't have it.

Lastly for the main content you can't just keep on making image files just use arial or times new roman, every computer now days have those files and they look the most professional
Go to the top of the page
 
+Quote Post
ninjamunky
post May 2 2005, 12:26 AM
Post #3


Advanced Member
Group Icon

Group: Members
Posts: 129
Joined: 18-April 05
Member No.: 4,120



QUOTE(m3ch4 @ May 1 2005, 07:42 PM)
Hey there, I've been slowly studying up on html while I earn enough credits to get a page and I've run across two curious points to do with fonts and questions about them.

You can use your own fonts, but unless a visitor has the font you specify in your source code, they won't see it, but you cann't upload a font to where you upload your site page files and reference it there...does anyone know why this is?

And secondly, I have yet to run across a list of fonts that are loaded by default on various operation systems. Does a list of fonts that automatically get installed with various OS' exsist somewhere? and if so, can you post links here to them?

thanks
*




1. Just the way it is. Don't know. I guess it would be possible to have a temporary file for fonts, but there isn't LOL. So basically, the only reason you can't put a font on your server for reference is because the browser still couldn't display it. But, if you design in Flash, the font comes embeded within the file.

*And if your site is really good, you could have some kind of downloader that users download that extracts the font to their fonts, or something like that. There might be a way to put the font into their directory when they hit your site, like some kind of download prompt; just an idea to play around with.

2. I think that the following links are what you're looking for; listed from what I think is best to worst

http://www.microsoft.com/typography/fonts/

http://www.answers.com/topic/list-of-fonts-in-mac-os-x

http://www.fixarna.com/frontpage/windowsfonts.htm
Go to the top of the page
 
+Quote Post
m3ch4
post May 2 2005, 01:39 AM
Post #4


Advanced Member
Group Icon

Group: Members
Posts: 112
Joined: 29-April 05
Member No.: 4,527



@Dream

thanks for the suggestion, this'll probably be my main solution for things

@ninjamunky

LISTS! Score! Thanks man, those were what I was looking for =D

thanks for the replys and explainations, much appreciated
Go to the top of the page
 
+Quote Post
miCRoSCoPiC^eaRt...
post May 2 2005, 01:10 PM
Post #5


PsYcheDeLiC dR3aMeR
Group Icon

Group: Admin
Posts: 2,242
Joined: 29-January 05
From: Nakorn Chaisri, Thailand
Member No.: 2,411
myCENTs:84.36



There was some way to do this... at least the technology was in its gestative stage when I'd read about it around 3-4 years ago. It's called WEFT or Web Embedded Font Technology. I haven't really kept track of it recently, so just google for WEFT and am sure you'll find loads of hits.

This was supposed to set the next standards for implementing embedded fonts on sites - to overcome just what you're trying to... smile.gif

All the best..
Go to the top of the page
 
+Quote Post
m3ch4
post May 3 2005, 11:44 PM
Post #6


Advanced Member
Group Icon

Group: Members
Posts: 112
Joined: 29-April 05
Member No.: 4,527



QUOTE(microscopic^earthling @ May 2 2005, 09:10 AM)
There was some way to do this... at least the technology was in its gestative stage when I'd read about it around 3-4 years ago. It's called WEFT or Web Embedded Font Technology. I haven't really kept track of it recently, so just google for WEFT and am sure you'll find loads of hits.

This was supposed to set the next standards for implementing embedded fonts on sites - to overcome just what you're trying to... smile.gif

All the best..
*



Chased after that, and came across...

http://www.microsoft.com/typography/web/em...eft3/weft00.htm
http://www.microsoft.com/typography/web/em...ft3/default.htm
http://groups.msn.com/MicrosoftWEFTusersco...ssageboard.msnw

..downloaded the program and checked it out, apparantly it just adds some css coding and then creates an "eot" file that points browsers to the files to load the font characters. It's pretty slick, but it's probably something that can be coded yourself. I've never heard of an "eot" file and don't know how to create it without the program though =/
Go to the top of the page
 
+Quote Post
twitch
post May 10 2005, 03:52 PM
Post #7





Guests






eot files are more than likely just simple text files. Just open them in a text editor and it should work.

As for the font system, it is best to use the combination of the following fonts in your CSS.

Arial, Helvettica, Verdana

Those three put together seem to be the pretty bogstandard text, that has literally become a design essential. Any serif-fonts are not looked upon as being eye-candy when it comes to websites. However, this rule doesn't apply to documents.

For ages it has been the annoyance of many web newbies. The best way to do it is to stick to the design standards. I you are going to use non-standard fonts, then make sure they are images.


--mik:P
Go to the top of the page
 
+Quote Post
m3ch4
post May 10 2005, 07:12 PM
Post #8


Advanced Member
Group Icon

Group: Members
Posts: 112
Joined: 29-April 05
Member No.: 4,527



Twitch:

unfortunately eot files are not text files =/ can't open them with notepad or anythign like that.


I don't really want to use any fancy fonts or anything, I just want to make sure that my site can be read the same way from any browser so I can work out table sizes and stuff. mainly that's it, just making sure things are viewable by most people.

so I'll keep to arial, Helvettica and verdana, but in the reverse order tongue.gif I like verdana better smile.gif
Go to the top of the page
 
+Quote Post
twitch
post May 11 2005, 03:11 PM
Post #9





Guests






Just remember what the public wants (unless it is a personal site).


--mik
Go to the top of the page
 
+Quote Post
lesmizzie
post May 17 2005, 09:03 PM
Post #10


Member [ Level 2 ]
Group Icon

Group: Members
Posts: 62
Joined: 13-April 05
Member No.: 3,958



QUOTE(m3ch4 @ May 1 2005, 06:42 PM)
Hey there, I've been slowly studying up on html while I earn enough credits to get a page and I've run across two curious points to do with fonts and questions about them.

You can use your own fonts, but unless a visitor has the font you specify in your source code, they won't see it, but you cann't upload a font to where you upload your site page files and reference it there...does anyone know why this is?

And secondly, I have yet to run across a list of fonts that are loaded by default on various operation systems. Does a list of fonts that automatically get installed with various OS' exsist somewhere? and if so, can you post links here to them?

thanks
*




I think the reason why you cannot upload your own fonts to the server is because of license and copyright issues. You can, however, have a link on your site that says "To best view this site, make sure you have blah blah font downloaded, and you can download it at so and so dot com." That way you can make sure that viewers will see the site the way it is supposed to look if they want to. The text will show up no matter what, but it will come out in times new roman or times.

Basically these are some of the fonts that are mainly used on all OS's that you can feel safe using:

Impact
Verdana
Times new roman
Times
Comic Sans MS
Arial
Go to the top of the page
 
+Quote Post

2 Pages V   1 2 >
Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Fonts(11)
  2. Mac <-> Pc <-> Opentype Font Conversion Utilities(0)
  3. Adding East Asian Fonts To Your System(4)
  4. Embeding Font Files(1)
  5. Change Fonts On A S60 Phone [tutorial](15)
  6. Free Mac To PC Font Converter(0)
  7. Favorite Fonts(21)
  8. How Do You Install Fonts Under Gnome 2.14.0(3)
  9. Firefox Problem(5)
  10. True Type Fonts In Linux(4)
  11. Sifr 2.0: A System For Embedding Non Web-safe Fonts(6)
  12. What Are The Best Fonts?(7)
  13. Performance Impact Of Deinstalling Fonts?(7)


 



- Lo-Fi Version Time is now: 23rd November 2008 - 06:33 PM