Styling Font in CSS
Applying Font
There are 3 ways to apply font:
-
Single Font Name:
body
{
font-family: Verdana;
}
-
Font Family Keywords:
body
{
font-family: serif;
}
-
Multiple Font Names:
body
{
font-family: Verdana,Arial,Helvetica,sans-serif;
}
Home
PHP
HTML
CSS
JavaScript
JQuery
Contact-us