Suhail Gupta
Suhail Gupta

Reputation: 23276

setting font of title

When giving title to a web page is it possible to change the font of the title? for example: <html> <title> Question </title> </html>

Now if i want to set the font of title 'question' to be what i want,then how can i do it?

Upvotes: 0

Views: 472

Answers (4)

Jellicle
Jellicle

Reputation: 30256

I presume you'd like to add style to the title as it appears in the Search Engine results? Alas, web crawlers don't support this functionality (though one of either category could actually be built to support title styles). However, you can achieve a distinct look by using non-ASCII characters (IPA or Greek or Russian) or punctuation.

If you're looking for a distinct look in your title in the browser window (e.g. in the tab) a custom favicon may be of use (it's the tiny image that appears in the browser next to your title). This thread discusses how to do that: How do I put image in url in HTML?

Upvotes: 0

Jim Blackler
Jim Blackler

Reputation: 23169

No. See the standard.

Titles may contain character entities (for accented characters, special characters, etc.), but may not contain other markup (including comments).

http://www.w3.org/TR/html401/struct/global.html#h-7.4.2

Upvotes: 4

Peter Olson
Peter Olson

Reputation: 142947

This is not possible. The only special thing you can do with title text is changing the text direction between left-to-right and right-to-left

Upvotes: 0

marcgg
marcgg

Reputation: 66455

No it's not possible with all of the most commonly used browsers.

Upvotes: 2

Related Questions