Well, in my last post I promised you a CSS property, so basically the first one we will be doing is the font-family property. The font-family property indicates the font in which your website will be displayed in. To see a list of supported fonts go here. These fonts are all supported by any computer or browser. To use the font-family property you must do this
<style> body { font-family: insert font here; } </style>The style tag must go between the doctype and the html tag.