Fonts Flashcards
Using fonts:
.sansserif {
font-family: Verdana, Arial, Helvetica, sans-serif; //provides 1 ideal, 2 alternatives and a generic font family
}
By default, the browser uses fonts installed on a ______ machine. If a web developer references a font that is not installed on the client machine, the browser will _______ a font.
By default, the browser uses fonts installed on a user’s machine. If a web developer references a font that is not installed on the client machine, the browser will substitute a font.
That default behaviour (fonts), in most cases, is frowned upon because the web developer is no longer ___ _______. Thankfully, web developers have options:
1)
2)
That default behaviour, in most cases, is frowned upon because the web developer is no longer in control. Thankfully, web developers have options:
1) Host and serve fonts from their own server
2) Use a 3rd party font hosting service.
In order to use a font in your web projects (or any media) you need to have ______ to do so. While many fonts are free, others must be paid for, and each one comes with its own _____ and _____ of use. In some cases, you may have to pay a different fee for using fonts on a website as opposed to a print document. Additional font _____ may cost more.
In order to use a font in your web projects (or any media) you need to have permission to do so. While many fonts are free, others must be paid for, and each one comes with its own licenses and terms of use. In some cases, you may have to pay a different fee for using fonts on a website as opposed to a print document. Additional font formats may cost more.
Pricing structures _____. Web developers may be able to purchase individual fonts, font _____ or font ____outright or use a third party _______ -based service.
Pricing structures vary. Web developers may be able to purchase individual fonts, font families or font packages outright or use a third party subscription-based service.
Just because it’s free doesn’t mean you can use it however and wherever you want. Be aware of the _________.
Just because it’s free doesn’t mean you can use it however and wherever you want. Be aware of the terms of use.
Typically, third party font providers will allow you to make a _______ to their fonts for inclusion into your own project.
Depending on the service, there may be associated costs and limitations, such as _____ quotas.
Typically, third party font providers will allow you to make a reference to their fonts for inclusion into your own project.
Depending on the service, there may be associated costs and limitations, such as usage quotas.
In addition to common letters, a font family may contain characters that may be displayed using their character _____.
For example, to display the English currency pound (£), developers would use “_____” https://css-tricks.com/snippets/html/glyphs/
n addition to common letters, a font family may contain characters that may be displayed using their character codes.
For example, to display the English currency pound (£), developers would use “£” https://css-tricks.com/snippets/html/glyphs/
Developers can take it a step further by creating their own ____ families where they have full control over the visual output of each character and character codes.
Developers can take it a step further by creating their own font families where they have full control over the visual output of each character and character codes.
Since these _____ are customizable, many developers use fonts as icon sets.
You can also use Illustrator and font-creation software to design and create your custom fonts.
Since these glyphs are customizable, many developers use fonts as icon sets.
You can also use Illustrator and font-creation software to design and create your custom fonts.