Archive for March, 2010

Is that TrueType fonts are okay for you?

Thursday, March 25th, 2010

TrueType fonts are an outstanding choice, particularly for folks in commercial environments running Windows systems. Why? Because Windows systems are usually installed with a huge collection of TrueType fonts. It is also trouble-free to install TrueType fonts, & you don’t need any extra software to work with them.

Each new typeface we release is existing in TrueType & PostScript formats. Looking for an exact TrueType font but can only find it in PostScript? We can convert it for you.

Two or Three years before, the class of TrueType fonts was perceived as lower quality, mostly because of the uncontrolled availability of cheap, substandard TrueType fonts. Luckily, the negative awareness of TrueType has washed out, as more type engineers & designers take benefit of TrueType’s inherent hinting properties, allowing for the making of superior quality fonts.

Share

Illustrator Guidelines to create your own fonts & types!

Monday, March 22nd, 2010

Share

HTML Font Tag!

Thursday, March 18th, 2010

Like this HTML codes – you can state together the size & the type of the browser O/P:

<p>
<font size=”2″ face=”Tahoma”>
Text in a paragraph.
</font>
</p>

<p>
<font size=”3″ face=”Times”>
Again text in paragraph.
</font>
</p>

Following will show the Font Attributes:

Attribute Example Purpose
size=”number” size=”2″ Defines the font size
size=”+number” size=”+1″ Increases the font size
size=”-number” size=”-1″ Decreases the font size
face=”face-name” face=”Times” Defines the font-name
color=”color-value” color=”#eeff00″ Defines the font color
color=”color-name” color=”red” Defines the font color
Share

Web Designing Font Fundamentals!

Thursday, March 18th, 2010

CSS Font Family declarations be supposed to utilize a series of ideal fonts & a generic fallback font for the reason that display of fonts depends on the font being installed on the end user’s computer.

Not all users will have the fonts you specify, though some fonts are very common; if they don’t have the first named font, they may have the next font in the list, so that would be used.

The fonts available on Linux, Mac and Windows operating systems vary, so CSS font stacks should specify equivalent or similar fonts that may be available each system to improve the chances that one of the preferred fonts will be used.

That is the purpose of the Code Style Web font survey & font stack builder, to make it easier to build a more robust CSS font stack.

Share