View Full Version : Need Help font face and sizing


Tam
12-04-2005, 05:02 PM
Hi,

I am having problems with changing the size and face of my font. I would like my font size to be 12 pts and my font face to be Century Gothic. Can anyone help me correct my coding below. Also, I would like to add an extra space between office number and fax number.

Thank you,



<html>
<head>
<meta name"keywords" content="Management">
<title>Fire House Management</title>
</head>

<style>


td {font-family: value; [Century Gothic] font-size: 12pt; color: #000000; font-weight: normal; line-height: 20px;}

a:link, a:visited {color: #000000; text-decoration: none;}
a:hover, a:active {color: #FF0000;}

</style>


<body>

<div align="center"><img src="Artwork2.gif"></div>

<dd><dd>For more information:
<dd><dd>office // 888 839 0101 fax // 888 839 2943
<dd><dd>email //<a href="mailto:info@FireHouseManagement.com" title="Contact Us" style="cursor:hand"> info@FireHouseManagement.com</a>
</body>
</html>

harmor
12-04-2005, 05:11 PM
td{} is for the <td></td> tags in a table

Try
body {font-family: Century Gothic; font-size: 12pt; color: #000000; font-weight: normal; line-height: 20px;}

luvhartz
12-04-2005, 05:13 PM
EDIT: Woops looks like harmor beat me to it! lol, anywho if you want you can still try below and choose any or not =)

<html>
<head>
<meta name"keywords" content="Management">
<style type="text/css">
p {font-family: Century Gothic; font-size: 12pt; color: #000000; font-weight: normal; line-height: 20px;}

a:link {color: #000000; text-decoration: none;}
a:visited {color: #000000; text-decoration: none;}
a:hover {color: #FF0000;}
a:active {color: #FF0000;}
</style>
<title>Fire House Management</title>
</head>
<body>
<div align="center"><img src="Artwork2.gif"></div>
<p>For more information:
<BR>office // 888 839 0101 fax // 888 839 2943
<BR>email //<a href="mailto:info@FireHouseManagement.com" title="Contact Us" style="cursor:hand"> info@FireHouseManagement.com</a></p>
</body>
</html>

Tam
12-04-2005, 05:23 PM
Harmon and LuvHartz,

Thanks soooo much it worked. Do either of you know the code to create an extra space between text?

harmor
12-04-2005, 05:26 PM
Use <br /> after the end of the line

ie.
Hey how you doing?<br />
I'm doing Fine

The more <br />'s you have the more line breaks you'll have

luvhartz
12-04-2005, 05:31 PM
or <BR> huh i didn't know about that code harmor what type of HTML is it? =)

harmor
12-04-2005, 05:31 PM
you mean something like?

Hello <space here> Harmor

I don't know

Monkey Bizzle
12-04-2005, 05:39 PM
or <BR> huh i didn't know about that code harmor what type of HTML is it? =)

If you are talking about <br /> that's XHTML.

...the code to create an extra space between text?

&nbsp; put that as many times as you want. Each time you put it, it represents one space.

Tam
12-04-2005, 05:45 PM
Again Thank you everyone....

<br> creates a break. I just want to add some space between words. Although I use the space bar, when it appears on the screen there isn't anyspace.

Example: "Thank You" vs. "Thank You"

Monkey Bizzle
12-04-2005, 05:49 PM
Tam, did you see my post above?

allie
12-04-2005, 05:57 PM
Use:

&nbsp;

It creates one space. Repeat it for extra spaces:

&nbsp;&nbsp;&nbsp;&nbsp; ----> Creates 4 spaces.

Edit: :lol: I didn't see her post ;)

Tam
12-04-2005, 05:59 PM
Monky Bizzle,

Thanks again and sorry, I guess I over looked that portion of your post.