+ 1
Font families
Is general family only put in HTML? And font family in CSS?
2 Respostas
+ 2
Font family is used in this way: 
In head tag, 
<link href="...."> or <script src="..."></script> With the value you will get from Google Fonts or Font Awesome etc. Then in css: 
font-family: Font family name, cursive or serif/sans-serif etc ; 
Was that your question?
0
You can also use web safe fonts in CSS, put it in body{ } .
Example: font-family: "Times New Roman", Times, serif;



