Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Google track me if I use Google Web Fonts?

By using Google Web Fonts can/does Google

  • process the text of the webpage (despite disallowed by robots.txt)
  • track the visitors of the webpage, and (theoretically) recognize them
  • track the changes made to the webpage (despite robots.txt)

Except knowing that another download is made to their font and css file, of course. :)

I assume Google naturally would/could count and track the number of visitors of my webpage, is this right?

edit: "I", "my" - I've tried to use these terms as "generally speaking" here

like image 744
n611x007 Avatar asked Jun 11 '12 09:06

n611x007


People also ask

Is it legal to use Google Fonts?

Yes, you can use them commercially, and even include them within a product that is sold commercially. Usage and redistribution conditions are specified in the license. The most common license is the SIL Open Font License. Some fonts are under the Apache license or Ubuntu Font License.

Are Google Fonts secure?

Google Fonts are completely safe to use to enhance the design of your website. But, the extra HTTP requests to an outside server could slow down your page loading speed.

Are Google Web Fonts free for commercial use?

All fonts are released under open source licenses. You can use them in any non-commercial or commercial project. With so many unique fonts to use, you're bound to find something you like!

Does Google Fonts violate GDPR?

Saving locally the Google Fonts to your website server eliminates sending personal data to Google's servers, and thus eliminates violating the GDPR. You can download the Google Fonts files and upload them to your website host.


2 Answers

Google can for sure count your users and track their IP address, browser version, and such. It won't be able to access user cookies as the font resides on a different domain.

By using a web font you are not sharing any content with the font provider, but your users may be providing a referrer address to the provider (the URL of the page containing the font request, i.e. using the font). If your page is public and does not require authentication, nothing prevents Google from reading this referrer, except best practices. If it requires authentication, then Google should not be able to get the text.

like image 90
Palantir Avatar answered Oct 14 '22 04:10

Palantir


Google answers this question in their Google Fonts API docs.

To paraphrase the essential info:

"The Google Fonts API is designed to limit the collection, storage, and use of end-user data to what is needed to serve fonts efficiently."

"[...] requests for fonts are separate from and do not contain any credentials you send to google.com while using other Google services that are authenticated, such as Gmail."

"The font files themselves are cached for one year [...] When millions of websites all link to the same fonts, they are cached after visiting the first website and [the] result is that website visitors send very few requests to Google:"

like image 33
Colin R. Turner Avatar answered Oct 14 '22 03:10

Colin R. Turner