-3

I have a css code like this

      @font-face {
      font-family: "Oswald";
      font-style: normal;
      font-weight: 400;
      src: local("Oswald Regular"), local("Oswald-Regular"), url("http://themes.googleusercontent.com/static/fonts/oswald/v8/-g5pDUSRgvxvOl5u-a_WHw.woff") format("woff");
      }

In this code the url shows the location of the .woff file. I want to see are there any more fonts available at themes.googleusercontent.com/static/fonts/

when i enter this address themes.googleusercontent.com/static/fonts/ in the url it says The requested URL /static/fonts/ was not found on this server.

SO where can i go in google and see all the available fonts. so that i want to link in the stylesheet and use them.

I searched in google but its not very clear

Santhosh
  • 9,965
  • 20
  • 103
  • 243

1 Answers1

2
@font-face 
{   
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    src: url('http://themes.googleusercontent.com/static/fonts/oswald/v8/-g5pDUSRgvxvOl5u-a_WHw.eot?') format('eot'), url('http://themes.googleusercontent.com/static/fonts/oswald/v8/-g5pDUSRgvxvOl5u-a_WHw.woff') format('woff'), url('http://themes.googleusercontent.com/static/fonts/oswald/v8/-g5pDUSRgvxvOl5u-a_WHw.ttf') format('truetype');
}
Hardik Panseriya
  • 523
  • 4
  • 15