Custom fonts

Hey all

Anyway to add custom fonts into the CSS ?

I had a try by adding the fonts to the www directory and refering back but no luck, im not great with CSS / html

If anyone is interested its actually quite easy to setup google fonts (although would need internet to pull)

  1. Pick a font - https://fonts.google.com/
  2. select the font and a window appears at bottom, choose “Embed” and “@import
  3. grab the url and add it to your css file eg @import url('https://fonts.googleapis.com/css?family=Roboto');
  4. add the font you your element which is listed just below the url on the google fonts page
    eg. font-family: 'Roboto', sans-serif;

thats it done…