Fitness.com
Advertisement

Go Back   Sports Forum > Community > Graphics > General Photoshop Board

General Photoshop Board

Topics cover anything to do with Photoshop outside of those forums below.


» Site Navigation
 > Shop
» Current Poll
Best 5 club teams in history of Football:
Liverpool 1977-1978 - 100.00%
1 Vote
Real Madrid 1956-1960 - 0%
0 Votes
Juventus 1985 - 0%
0 Votes
Milan 1989-1990 - 100.00%
1 Vote
Ajax 1971-1973 - 0%
0 Votes
Santos 1962-1963 - 0%
0 Votes
Torinho 1940's - 100.00%
1 Vote
Ajax 1995 - 0%
0 Votes
Flamengo 1981 - 100.00%
1 Vote
Benfica 1961-1962 - 100.00%
1 Vote
Total Votes: 1
You may not vote on this poll.
» Stats
Members: 103,350
Threads: 84,986
Posts: 1,031,253
Top Poster: Karky (9,545)
Welcome to our newest member, erfanmaleki
» Fitness Shop
If you register for free, you will be able to post threads, vote on polls and lots more. If you have problems with the registration or logging in, please contact the administrator.

Reply
 
LinkBack Thread Tools Display Modes
Old 02-20-2005, 10:15 AM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #1
Guest
 
Posts: n/a
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

Whoa, I've been gone a long while. I'm happy to say that I'm back in action and more motivated than ever before. I've come to the realization that my current job is not the carrier path I want to continue on. So with that said; back to the web for more answers to my many questions.

My questions have to deal with formatting of text using XHTML or CSS. \:] [list]Can I us a specific font such as ?OCR A Extended? or some other random font that may not be associated with most computers?

Could I install a font pack on my server and access it through a .CSS? This way if the end user doesn?t have the font on their machine it will still be displayed?[/list:u]
Thx again,
-Joe
  Reply With Quote
Old 02-21-2005, 09:31 PM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #2
Newb
 
Join Date: Jul 2003
Posts: 12
Rep Power: 0
Blinky2004 is an unknown quantity at this point
Send a message via ICQ to Blinky2004 Send a message via AIM to Blinky2004
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

Hey Joe...

As to question #1: Yes. Just assign it using the standard CSS methods; either in a specific .class or within the body {} section. This will not however guarantee a user will see this font on the page, if they don't have it installed.

As to question #2: No. Not that i'm aware of. The downloading/usage of specialized fonts is a browser/user pref i believe. Not something you can force on people.

Anyone else know anything about this subject?
Blinky2004 is offline   Reply With Quote
Old 02-22-2005, 06:41 AM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #3
Guest
 
Posts: n/a
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

Hi Joe - I remember you --Welcome back and I remember some of your photos were really wonderful. Hope you stay longer this time.

Well I've never used before but I've read about it. The good CSS book sez You can embed a font on a page for viewer to use. One of the latest features to be added to style sheets is the ability to embed a font on a page and have it downloaded to the visitors system, just like a image.

Type @font-face{font-family; ".
type the full name of the font that you wish to embed.

Type ";src:url
(type the url of the font.
Type )}

Naturally be sure the font is loaded where you are pointing. 8}

Let us know if it works for you! and if its cross browser.
  Reply With Quote
Old 02-22-2005, 10:02 PM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #4
Guest
 
Posts: n/a
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

If that's true that's great-but it raises a question in my mind.
Do you know how the font is downloaded? In other words, does it become a font like any other font that's installed on the user's system-did they now just get a font for free? If so, isn't that potential piracy?
Or is the font utilized in some way so that it isn't further available to the end user? (how?)
If it is somehow interpreted by the browser on the fly and displayed on that page only (and then "deleted"), is that something that only a limited number of newer browsers would be able to do? (how new?)

Optimistic but cautious--!
Tim
  Reply With Quote
Old 02-23-2005, 12:58 AM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #5
Guest
 
Posts: n/a
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

Ahaaa good question. I had this item noted in my CSS files incase I ever needed it. It did show an example of the font being used in the text just like one would specify using HTML. The viewer doesn't get free fonts, unless he reads the source code and downloads it.

I think to answer your other questions, go to:
www.microsoft.com/typography/web/embedding/weft/ if that site is no longer up (MS really moves things around) just search around on MS for "CSS embedded fonts". In the beginning you had to convert your installed fonts into .eot format using a program called WEFT. I think CSS was dramatically changed and expanded after this publication so I would encourage you do a search on a current CSS info site.

My source for the original info was a book called: HTML by Elizabeth Castro, PeachPit press. [righton]

I have heard of ways to put fonts on servers in html also but I always try to stay away from putting anything on a server I don't control.

I'll search too, maybe between us, the answer will materialize. It's useful knowledge to have. Start with this article http://www.netmechanic.com/news/vol3/css_no15.htm

Joy
  Reply With Quote
Old 02-23-2005, 04:21 AM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #6
Newb
 
Join Date: Jul 2003
Posts: 12
Rep Power: 0
Blinky2004 is an unknown quantity at this point
Send a message via ICQ to Blinky2004 Send a message via AIM to Blinky2004
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

ooo ok well that's something i just learned about CSS. Is that a CSS2 spec Joy?

One thing to bear in mind with this subject is that fonts are generally quite large in file size. And using one or more of them on your site will dramatically increase download times for your visitors.

It's something to keep in mind and weight against just using the standard Web fontset.

I'm gonna search out this subject some more.
Blinky2004 is offline   Reply With Quote
Old 02-23-2005, 08:33 AM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #7
Guest
 
Posts: n/a
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

Yeap Mark its my understanding that the server has to download the font set before page opens for viewer. I think that is one of the reasons its not well known or a popular technique with web designers, there are better options AYK. I was quoting from CSS 1

I noticed on CSS 2 http://www.w3.org/TR/REC-CSS2/fonts.html#font-selection --they are still talking about long download times.

Even with DSL its probably not really practical yet
  Reply With Quote
Old 02-23-2005, 03:26 PM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #8
Guest
 
Posts: n/a
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

Here's something I stumbled upon, it seems Bitstream has some tools to allow a designer to embed fonts:
http://www.truedoc.com/webpages/FAQs/activex_faq.html
http://www.truedoc.com/webpages/intro/introduction2.htm

Kind of scary, especially when you start reading about a player having to be downloaded to the users system (300+ KB!), and the things you have to do on the server side (yeah, my host will be sure to jump on that! ).
And it's not compatible with everyone (looks to be unavailable for Mac or XP).

But I guess that's just one company's solution...

Joy, I read through one of the links you posted (thanks!) and saw that there are two flavors of downloadable fonts. One of them does keep the fonts out of the users system so the piracy issue is non-existent, which is nice. That one also seems to be the more compatible of the two (Netscape and Explorer)...

Must do more reading!! :}
  Reply With Quote
Old 02-23-2005, 03:46 PM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #9
Guest
 
Posts: n/a
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

Some more clarification-
The "flavor" that doesn't download the font to the user's system is the Bitstream technology I mentioned before, so my statement that Bitstream's was "one company's solution" was a bit off-it's the only solution!
Microsoft has their own way of doing it, but it's only compatible with Explorer (big shocker!), and the fonts do download to the users system.

FYI-when I went to the Bitstream links I mentioned, I was confronted with a security alert box asking if I wanted to download what I presume to be the player. Imagine confronting our site visitors with that dialog box-yikes!! If I were just browsing around that's usually my cue to hit cancel and the back button (especially with the all of the Spyware and junk floating around-I'm afraid to click on anything, much less something that says its going to install something).
This actually seems like more of an intrusivve burden than being asked to download the Flash player or PDF reader. At least with those the viewer will be getting more functionality (and hopefully understand that). With this there isn't any more "functionality" as far as the viewer is concerned. So in essence we're asking the viewer to "please take a leap of faith and install this software you never heard of so you can see the cool font I used, even though in the end you could probably care less if it was Times or BeesKnees".
Seems like it still needs some work so it's non-intrusive. The good news is that at least folks are moving in that direction and perhaps there will be a user-friendly solution in the near future.
In the meantime I'm sticking with JPEGs for my super cool headline type! [confused]
  Reply With Quote
Old 02-23-2005, 05:07 PM   How can I use a SPECIFIC font(s) with XHTML or .CSS Post #10
Guest
 
Posts: n/a
Default How can I use a SPECIFIC font(s) with XHTML or .CSS

Thanks for the input. Good research. I hate those automatic downloads too and never take them.

Makes sense about streaming, anything can be streamed nowdays.

I agree, its not fully developed -- I'm definitely staying with GIF, JPG or using a CSS Family of Fonts. As we are forced to use more CSS, W3 might eventually make it possible. It's a good idea. 8D
  Reply With Quote
Reply

Go Back   Sports Forum > Community > Graphics > General Photoshop Board

Bookmarks

Thread Tools
Display Modes


Similar threads to How can I use a SPECIFIC font(s) with XHTML or .CSS
Thread Thread Starter Forum Replies Last Post
Specific training
Specific training: My strikers have plenty of shots but not many...
Polstar Football Manager 1 06-25-2008 10:01 PM
Specific Instructions
Specific Instructions: I think you should be able to tell your players...
TheInvisibleMan Football Manager 1 11-18-2007 11:55 AM
I'm new and I need help with something specific
I'm new and I need help with something specific: I'm new to photoshop and this forum and I need...
BluePrince General Photoshop Board 4 04-16-2007 08:48 PM
What is this font? - Pixel type font
What is this font? - Pixel type font: http://www.need2upload.com/uploads/3585d0b6bf.jpg...
scr33n General Photoshop Board 7 02-13-2007 07:25 PM
Specific instructions against specific opponents
Specific instructions against specific opponents: Does anyone have any good tactical advice after...
south_side Tactics & Training Tips 5 01-27-2007 09:31 PM

More threads of Wait
Thread Date Forum Replies Last Post
Teach me .CSS drop down menus! ;-)
Teach me .CSS drop down menus! ;-): For what it is worth I am creating a new site to...
02-24-2005 General Photoshop Board 5 06-07-2005 06:07 PM
A little border help, please!
A little border help, please!: The forum is back up :} ... I tried to post a...
04-24-2005 General Photoshop Board 2 04-24-2005 05:00 AM
How can I use a SPECIFIC font(s) with XHTML or .CSS
How can I use a SPECIFIC font(s) with XHTML or .CSS: Whoa, I've been gone a long while. I'm happy to...
02-20-2005 General Photoshop Board 11 02-24-2005 01:26 AM
My first 55 gallon fish aquarium!!
My first 55 gallon fish aquarium!!: I decided not to wait any longer.. I went out and...
08-29-2003 The Pub 11 09-03-2003 10:15 PM
Web templates. Anyone?
Web templates. Anyone?: I was wondering where I can find a link or...
05-20-2003 General Photoshop Board 22 08-26-2003 06:43 PM

Other threads in forum General Photoshop Board
Thread Date Thread Starter Replies Last Post
New EPL font
New EPL font: Does anyone have it or can point me in the...
07-21-2007 latch 0 07-21-2007 03:40 PM
Flower Brush/Texture
Flower Brush/Texture: I was browsing through the forum and the member...
05-22-2007 redbloodedmick 2 06-03-2007 06:34 PM
Text Boxes
Text Boxes: hi i have found a few of these text boxes can...
06-26-2006 Black and White 2 06-26-2006 06:12 PM
LCD Digital Color Settings?
LCD Digital Color Settings?: Hi: I have a LCD Viewsonic VP191b plugged in...
01-27-2004 greygoat 1 01-29-2004 11:12 AM
PS Crashing with Wacom
PS Crashing with Wacom: Hi, I havn't posted in the forum yet because...
03-31-2002 ToXin 20 04-07-2002 01:32 AM

» Online Users: 22
0 members and 22 guests
No Members online
Most users ever online was 2,128, 07-21-2008 at 08:27 PM.

All times are GMT +1. The time now is 12:50 PM.


Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Fitness.com | Weight Loss | Training & Fitness | BodyBuilding | Chinese | Spanish | French | Germany | Italian | Friend Codes |
You are viewing How can I use a SPECIFIC font(s) with XHTML or .CSS.