The typeface of text on a web page, and its particular characteristics such as size and weight are defined using font and its related properties.
The font-family property accepts a comma-separated list of font family names. If the browser can't find the first font on the list, it tries to find the next font, and so on, until it finds a font or uses default.
If the font name contains spaces, enclose the name with single or double quotation marks.
At the end of the list of font choices, you should insert a generic font family. CSS offers five generic font family values:
<style> h4 { font-family: Verdana, Arial, Helvetica, sans-serif; } p { font-family: 'Segoe Script', 'Comic Sans', fantasy; } </style> <h4>H4 - Example font-family</h4> <p>Css with specified font-family for H4 and P HTML elements.</p>
If you want to use a particular font in your web page, other than 'web-safe' fonts, you can include it with @font-face
rule.
The @font-face
rule allows for defining a custom font family and linking that family to a resource where the font file data resides.
To use this CSS rule, you need to set two properties: font-family
(the family name for the custom font) and src
(the font source URI).
- Include a font file somewhere on your server, and refer to it with CSS, as you can see in the fallowing example:
@font-face { font-family: 'Sansation_Light'; src: url('Sansation_Light.ttf'); } /* Once the new font is included, you can use it */ h1 { font-family: 'Sansation_Light', sans-serif; }- If the font file is located at a different domain, use a full URL:
@font-face
rule (or could not find or did not understand the particular format of the font), it would ignore the font name when it tried to follow the font-family rule and render the element using the browser-defined sans-serif font.
The problem with @font-face is that the browsers not recognise the same file font format.
The IE browser supports the Embedded OpenType Font format (.eot). Firefox, Chrome, Safari, and Opera support fonts of type OpenType Face (.otf) and TrueType Format (.ttf).
The font-size
property controls the size of the text in the element and may be defined as a fixed size or a size relative to the font size of the parent element.
It can take different values and several units:
<style> #idp1 { font-size: 16px; } #idp2 { font-size: 125%; } </style> <h4>Example font-size</h4> <p id='idp1'>Web site: https://CoursesWeb.net (font-size: 16px;)</p> <p id='idp2'>RO Web site: marplo.net (font-size: 125%;)</p>
The font-weight
property controls the weight, or thickness, of the characters in a font.
It can take different values:
<style> #idp1 { font-weight: bold; } #dv1 { font-weight: 500; } </style> <h4>Example font-weight</h4> <p id='idp1'>This paragraph has font-weight:bold.</p> <div id='dv1'>This Div has font-weight:500.</div>
The font-variant
specifies whether or not a text should be displayed in a small-caps font.
<style> #idp1 { font-variant: small-caps; } </style> <h4>Example small-caps</h4> <p id='idp1'>Free CSS course.</p>
font-style
sets the style of the font.
<style> #idp1 { font-style: italic; } </style> <h4>Example font-style</h4> <p id='idp1'>Have a good life.</p>
Using the font property, you can set the individual font properties (font-style, font-variant, font-weight, font-size, font-family) in the same definition, separated by space.
- Syntax<style> #idp1 { font: italic small-caps bold 18px Georgia, serif; } </style> <h4>Example font property</h4> <p id='idp1'>Have a good life.</p>
<ul> <li>http://coursesweb.net/html/</li> <li>http://coursesweb.net/css/</li> </ul>
.some_class { display: list-item; }
var obj = { "courses": ["php", "javascript", "ajax"] }; var jsonstr = JSON.stringify(obj); alert(jsonstr); // {"courses":["php","javascript","ajax"]}
$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>'; $dochtml = new DOMDocument(); $dochtml->loadHTML($strhtml); $elm = $dochtml->getElementById("dv1"); echo $elm->nodeValue; // CoursesWeb.net