fonts html css code example
Example 1: font family css
font-family: "Comic Sans MS", cursive, sans-serif;
Example 2: define font css
body {
font: normal small-caps normal 16px/1.4 Georgia;
}
/* is the same as:
body {
font-family: Georgia;
line-height: 1.4;
font-weight: normal;
font-stretch: normal;
font-variant: small-caps;
font-size: 16px;
}
*/