up vote 1 down vote favorite
share [g+] share [fb]

I am trying to setup the font-family "Ravie" in a HTML document using the following code:

<h2><font font-family="ravie">Articles</font></h2>

but this is not working. Why not?

link|improve this question
feedback

6 Answers

To use the deprecated FONT tag:

<h2><font face="ravie">Articles</font></h2>

Better yet is to use inline styles:

<h2 style="font-family:ravie" >Articles</h2>

And even better is to use header style information:

<head>
    <style>
    h2 {font-family: ravie;}
    </style>
</head>
<body>
    <h2>Articles</h2>
</body>

Best of all is to move the style declaration to an external style sheet, and this is standard practice unless you have a strong reason for not doing so.

link|improve this answer
2  
I did not downvote, and I see you indicated its deprecated status, but why even suggest it?!?!?!?! :P – BoltClock Sep 4 '10 at 9:55
3  
Because the question specifically asked how to do this using the font tag. There are legitimate reasons for using the FONT tag, e.g., cross-platform email HTML support. – RedFilter Sep 4 '10 at 9:58
fair enough, I was just playing :) – BoltClock Sep 4 '10 at 9:59
feedback

you do it like this:

<h2 style="font-family:arial">...</h2>

or you do it in your stylesheet. like this:

<h2 class="somthing">...</h2>
.something { font-family:arial }

don't use <font> tags as they have been deprecated.

read: http://en.wikipedia.org/wiki/Font_family_%28HTML%29

link|improve this answer
feedback

The <font> tag is deprecated and no longer used. The better practice now is to use CSS combined with selectors, divs, and spans to style fonts.

link|improve this answer
feedback
#obj{
font-family:verdana;
}
link|improve this answer
feedback
<h2><td align="center" class="addfont">Articles</h2>

.addfont
{
    font-family: 'ravie';
}

can you try like this? It's very simple . Another advantage is the script can be used inside the page or outside the page,but if you use the outside of page. You must use below the line

<link href="/styles/Filename.css" rel="stylesheet" type="text/css">
link|improve this answer
feedback
<h2 style="font-family:tahoma">Articles</h2>

The <font> tag is deprecated in the latest versions of HTML (HTML 4.01 and XHTML 1.0).

link|improve this answer
2  
You can just indent your code with four spaces instead of encoding it with entities (I'd done that for you earlier)... – BoltClock Sep 4 '10 at 9:58
thanks a lot, I didn't know that. – onder Sep 4 '10 at 10:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.