1font-family: "Times New Roman", Georgia, serif;
2/* If the browser does not support the first font (ie: Times New Roman),
3it will then try the next font (ie: Georgia). The last font should always
4be a "generic-family" font (ie: serif, sans-serif, etc..).
5/* If font is more then one word, it must be put into quotes. */
1.serif_font {
2 font-family:"Times New Roman", serif;
3}
4.sans_serif_font {
5 font-family:"Open Sans", sans;
6}
1/* You can set the font family by using font-family: followed by the font family name
2 If you want to use a google font you have to find it on the google font website
3then link the script in your HTML and then put the name in font family
4
5browse fonts:
6https://fonts.google.com/
7*/
8
9.class {
10 font-family: sans-serif
11}