Can someone please tell me why is it that when I create a webpage with a certain font and look at it on another computer that does not have that font the page looks ordinary. How can I fix this appearance so that the wepage is permanent and the fonts are supported by the page or the code?
A web browser only has the fonts available to it on that system. There are very few type faces you can expect to be generally available. For headings and other small bits of text, you can try some image replacement method or another. Google is your friend. cheers, gary
Try using fonts which are by default on any computer (ex: times new roman,arial,trebuchet...) or link to your font style using css.
// In main.css .font { font-family: Tahoma; } Code (markup): // In your website in the "<head>" tag <link rel="stylesheet" type="text/css" href="main.css"> Code (markup): //In your website where you want your content. <div class="font">{Your Content Here}</div> Code (markup):