Html Fonts And Colors

liunx

Guest
HI EVERYONE!<br />
<br />
SORRY IF THIS SOUNDS LIKE A DUMB QUESTION. I WANT TO CREATE A WEBSITE BUT I DO NOT KNOW THE AVAILABLE KINDS OF COLORS AND FONTS I MAY USE. I ALSO HEARD THAT CERTAIN COLORS AND FONTS WILL NOT SHOW UP ON SOME PEOPLES COMPUTERS FOR SOME REASON. CAN SOMEONE GUIDE ME TO A LIST OF FONTS AND COLORS I MAY USE AND INFORM ME OF THE ONES WHICH ALL COMPUTERS CAN VIEW? THANKS IN ADVANCE!<!--content-->There are 16 different colours that can be used (by name).<br />
<br />
They are:<br />
<br />
* black<br />
* silver<br />
* gray<br />
* white<br />
* maroon<br />
* red<br />
* purple<br />
* fuchsia<br />
* green<br />
* lime<br />
* olive<br />
* yellow<br />
* navy<br />
* blue<br />
* teal<br />
* aqua<br />
<br />
However, as far as fonts are concerned it varies from PC to PC as to which fonts are installed.<br />
<br />
Therefore it is best to specify a couple of fonts (in the order of preference), so that if the first choice is not available it will go on to the second and the third and so on, and for the last font specify a default font family like sans-serif.<br />
<br />
eg.:<br />
<br />
<font color="black" face="verdana, comic sans ms, sans-serif" size="3"><!--content-->Thank you very much for your help. Could you also list a couple of well known fonts I can choose from, similar to the list of colors you listed. Thank you again for your help.<!--content-->In addition to those 16 named colors, there are hundreds you can use by Hex value. <br />
<!-- m --><a class="postlink" href="http://www.pagetutor.com/pagetutor/makapage/picker/">http://www.pagetutor.com/pagetutor/makapage/picker/</a><!-- m --><!--content-->Originally posted by lavalamp <br />
<font color="black" face="verdana, comic sans ms, sans-serif" size="3"> The FONT element was depricated back in 1997, and with good reason. Do not use it and do not encourage other people to use it. Instead, mark up the structure of the page, use <h1>Lorem Ipsum</h1> and then in the document's HEAD element:<br />
<br />
<style type="text/css"><br />
<!--<br />
h1 {color:#000}<br />
--><br />
</style><br />
<br />
See <!-- m --><a class="postlink" href="http://www.microsoft.com/typography/fonts/default.asp">http://www.microsoft.com/typography/fonts/default.asp</a><!-- m --> to get an idea of just what fonts are in use out there but always design so that it really doesn't matter if your user has a particular font or any fonts at all.<!--content-->I know that font has been depreciated, but what was the good reason for it?<!--content-->Fonts vary depending on operating system.<br />
<br />
Some basics follow, I would recommend selecting one from each and ending with a default font like "serif" or "sans-serif".<br />
<br />
WINDOWS:<br />
Arial<br />
Courier New<br />
Times New Roman<br />
Comic Sans<br />
<br />
MAC:<br />
Chicago<br />
Courier<br />
Times<br />
New York<br />
<br />
UNIX:<br />
Charter<br />
Courier<br />
Times<br />
Lucida<br />
<br />
Hope this helps.<!--content-->Originally posted by lavalamp <br />
I know that font has been depreciated, but what was the good reason for it? To encourage you to separate your content from your presentation. That way your page will always make sense no matter how it is presented and will be accessible to the blind and to search engines.<!--content-->
 
Back
Top