- CSS - Scrollbars
- CSS - Dimension
- CSS - Outlines
- CSS - Cursors
- CSS - Padding
- CSS - Lists
- CSS - Margins
- CSS - Borders
- CSS - Tables
- CSS - Links
- CSS - Images
- CSS - Text
- CSS - Fonts
- CSS - Backgrounds
- CSS - Colors
- CSS - Measurement Units
- CSS - Inclusion
- CSS - Syntax
- CSS - Introduction
- CSS - Home
CSS Advanced
- CSS - Validations
- CSS - Layouts
- CSS - Printing
- CSS - Aural Media
- CSS - Paged Media
- CSS - Media Types
- CSS - Text Effects
- CSS - @ Rules
- CSS - Pseudo Elements
- CSS - Pseudo Classes
- CSS - Layers
- CSS - Positioning
- CSS - Visibility
CSS3 Tutorial
- CSS3 - Box Sizing
- CSS3 - User Interface
- CSS3 - Multi columns
- CSS3 - Animation
- CSS3 - 3d transform
- CSS3 - 2d transform
- CSS3 - Web font
- CSS3 - Text
- CSS3 - Shadow
- CSS3 - Gradients
- CSS3 - Color
- CSS3 - Multi Background
- CSS3 - Border Images
- CSS3 - Rounded Corner
- CSS3 - Tutorial
CSS Responsive
CSS References
- CSS - Animation
- CSS - Units
- CSS - Web safe fonts
- CSS - Web browser References
- CSS - Color References
- CSS - References
- CSS - Quick Guide
- CSS - Questions and Answers
CSS tools
CSS Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
CSS3 - Web Fonts
Web fonts are used to allows the fonts in CSS, which are not installed on local system.
Different web fonts formats
Sr.No. | Font & Description |
---|---|
1 | TrueType Fonts (TTF) TrueType is an outpne font standard developed by Apple and Microsoft in the late 1980s, It became most common fonts for both windows and MAC operating systems. |
2 | OpenType Fonts (OTF) OpenType is a format for scalable computer fonts and developed by Microsoft |
3 | The Web Open Font Format (WOFF) WOFF is used for develop web page and developed in the year of 2009. Now it is using by W3C recommendation. |
4 | SVG Fonts/Shapes SVG allow SVG fonts within SVG documentation. We can also apply CSS to SVG with font face property. |
5 | Embedded OpenType Fonts (EOT) EOT is used to develop the web pages and it has embedded in webpages so no need to allow 3rd party fonts |
Following code shows the sample code of font face −
<html> <head> <style> @font-face { font-family: myFirstFont; src: url(/css/font/SansationLight.woff); } span { font-family: myFirstFont; } </Style> </head> <body> <span>This is the example of font face with CSS3.</span> <p><b>Original Text :</b>This is the example of font face with CSS3.</p> </body> </html>
It will produce the following result −
Fonts description
The following pst contained all the fonts description which are placed in the @font-face rule −
Sr.No. | Value & Description |
---|---|
1 | font-family Used to defines the name of font |
2 | src Used to defines the URL |
3 | font-stretch Used to find, how font should be stretched |
4 | font-style Used to defines the fonts style |
5 | font-weight Used to defines the font weight(boldness) |