We observe many different font types in word editors, email texts, web pages etc.
We can achieve the different font types using the font-family attribute in CSS.
Font-Family
The font-family names can be classified into two types:
The generic family is the default fonts installed in the machine.
Why use generic?
They can be used as backup, if the font used by one is not installed in a particular machine.
2. Font Family
These font family is all the rest of the fonts which can be used to design the font types in a webpage.
Here is a sample program showcasing the font-family attribute.
We can achieve the different font types using the font-family attribute in CSS.
Font-Family
The font-family names can be classified into two types:
- Generic family
- Font family
The generic family is the default fonts installed in the machine.
Why use generic?
They can be used as backup, if the font used by one is not installed in a particular machine.
2. Font Family
These font family is all the rest of the fonts which can be used to design the font types in a webpage.
Here is a sample program showcasing the font-family attribute.
1: <?xml version = "1.0" encoding="utf-8"?>
2: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3: <html xmlns = "http://www.w3.org/1999/xhtml">
4: <head>
5: <title>CSS Styling</title>
6: </head>
7: <body>
8: <p class="red">
9: Red
10: </p>
11: <p class="blue">
12: Blue
13: </p>
14: <p class="green">
15: Green
16: </p>
17: <style>
18: p.red
19: {
20: color:red;
21: font-size:20px;
22: font-weight:normal;
23: font-family:cursive;
24: }
25: p.blue
26: {
27: color:blue;
28: font-size:40px;
29: font-style:italic;
30: font-family:Lucida Console;
31: }
32: p.green
33: {
34: color:green;
35: font-size:60px;
36: font-weight:bolder;
37: font-family:Arial
38: }
39: </body>
40: </html>
Comments