Can I use google web fonts api or any type of custom fonts in ebay?

4k views Asked by At

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

There are 2 answers

0
Elliot Reed On

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');
0
AudioBubble On

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>