Fonts

Font Family

HTML Supported Fonts

Arial

p { font-family: 'Arial', sans-serif; }

Times New Roman

p { font-family: 'Times New Roman', serif; }

Courier New

p { font-family: 'Courier New', monospace; }

Imported Google Fonts

Pick a font at Google Fonts
Look for a popup window containing import instructions

Import your font in this format (replace FONTNAME with your font):

@import url('https://fonts.googleapis.com/css?family=FONTNAME');


Raleway

@import url('https://fonts.googleapis.com/css?family=Raleway'); p { font-family: 'Raleway', sans-serif; }

Quicksand

@import url('https://fonts.googleapis.com/css?family=Quicksand'); p { font-family: 'Quicksand', sans-serif; }

Dancing Script

@import url('https://fonts.googleapis.com/css?family=Dancing+Script'); p { font-family: 'Dancing Script', cursive; }

Font Style

Normal

p { font-style: normal; }

Italic

p { font-style: italic; }

Font Size

10pt font

p { font-size: 10pt; }

20pt font

p { font-size: 20pt; }

30pt font

p { font-size: 30pt; }

Font Weight

Normal

p { font-weight: normal; }

Bold

p { font-weight: bold; }