CSS3 Font Styles
Property to set font and fallback options:
font-family: Helvetica, Arial, "Times New Roman", sans-serif;
Note: Use quotes if fonts are made out of several words!
Reset default browser font styles:
html, body, h1, h2, h3, p, ol, ul, li, a {
font-size: 100%
font: inherit;
}
Settings for font properties:
font-size: ;
font-weight: bold, normal, lighter, bolder, 100-900 ; (thickness)
font-style: italic;
text-transform: uppercase, lowercase;
Adjusting line - height : spacing between each line
line-height: px;
Adding Copyright symbol:
<p>© TEXT </p>