skip to Main Content

I’m working in a layout for an ebay store. I know that ebay have restrictions using javascript code but you can call googleapis.com with a tag. So, Can I use google web fonts api or any type of custom fonts? thanks.

2

Answers


  1. I believe you can! You can use the font API in an external CSS file, which is still allowed.

    Eg:

    @import url('http://fonts.googleapis.com/css?family=Open+Sans');
    
    Login or Signup to reply.
  2. Yes, you can.
    If you were to use the Google font – Proxima Nova, you’d:

    Just add the below code at the top of your HTML code

    <link href="http://fonts.googleapis.com/css?family=Proxima+Nova" rel="stylesheet" type="text/css">
    

    and then you can specify an element with the delcared font with this:

    <span style="font-family: 'Proxima Nova';"> Sample </span>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search