VintagexLove
08-22-2005, 10:57 AM
I need to my entire webpage to change to a certain font and color. Does anyone know the coding?
brookeX
brookeX
|
View Full Version : Need help w/ overall font VintagexLove 08-22-2005, 10:57 AM I need to my entire webpage to change to a certain font and color. Does anyone know the coding? brookeX neouser456 08-22-2005, 11:23 AM <html> <head> <title>Untitled</title> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> Hope thats what you ment! :) Sheila 08-22-2005, 11:37 AM or you could use an external style sheet.... http://lissaexplains.com/css2.shtml pb&j 08-22-2005, 03:24 PM if you go the css way, you will probably be putting something like this in the head area of your coding... <style type="text/css"> body, div, td {font-family: FontNameHere;} </style> that should fix things up. iGeek 08-22-2005, 04:42 PM Just a tip, don't use unusual fonts on your website, such as Dark Crystal Outline or Earwig Factory; most people don't have fonts other than preinstalled fonts. If you HAVE too, either use images for headers or offer a link to the download page. |