Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8778821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:37:23+00:00 2026-06-13T19:37:23+00:00

I need to use some google fonts on an intranet application. The clients may

  • 0

I need to use some google fonts on an intranet application. The clients may or may not have internet connection. Reading the license terms, it appears that its legally allowed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T19:37:25+00:00Added an answer on June 13, 2026 at 7:37 pm

    Please keep in mind that my answer has aged a lot.

    There are other more technically sophisticated answers below, e.g.:

    • neverpanic/google-font-download
    • google-webfont-helper
    • localfont

    so don’t let the fact that this is the currently accepted answer give you the impression that this is still the best one.


    You can also now also download google’s entire font set via on github at their google/font repository. They also provide a ~1GB zip snapshot of their fonts.


    You first download your font selection as a zipped package, providing you with a bunch of true type fonts. Copy them somewhere public, somewhere you can link to from your css.

    On the google webfont download page, you’ll find a include link like so:

    http://fonts.googleapis.com/css?family=Cantarell:400,700,400italic,700italic|Candal
    

    It links to a CSS defining the fonts via a bunch of @font-face defintions.

    Open it in a browser to copy and paste them into your own CSS and modify the urls to include the right font file and format types.

    So this:

        @font-face {
          font-family: 'Cantarell';
          font-style: normal;
          font-weight: 700;
          src: local('Cantarell Bold'), local('Cantarell-Bold'), url(http://themes.googleusercontent.com/static/fonts/cantarell/v3/Yir4ZDsCn4g1kWopdg-ehHhCUOGz7vYGh680lGh-uXM.woff) format('woff');
        }
    

    becomes this:

        /* Your local CSS File */
        @font-face {
            font-family: 'Cantarell';
            font-style: normal;
            font-weight: 700;
            src: local('Cantarell Bold'), local('Cantarell-Bold'), url(../font/Cantarell-Bold.ttf) format('truetype');
        }
    

    As you can see, a downside of hosting the fonts on your own system this way is, that you restrict yourself to the true type format, whilst the google webfont service determines by the accessing device which formats will be transmitted.

    Furthermore, I had to add a .htaccess file to my the directory holding the fonts containing mime types to avoid errors from popping up in Chrome Dev Tools.

    For this solution, only true type is needed, but defining more does not hurt when you want to include different fonts as well, like font-awesome.

    #.htaccess
    AddType application/vnd.ms-fontobject .eot
    AddType font/ttf .ttf
    AddType font/otf .otf
    AddType application/x-font-woff .woff
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to use some color picker in my application, so I searched google
I'm developing an iPhone OpenGL application, and I need to use some textures with
I need to make use of some OWL ontologies in c#. Does anyone have
I have a situation where I need to use some strings temporarily but I've
If you use Google Checkout, do you still need to use ActiveMerchant/Spree/some payment gateway
I need to use some classes inside the app_code folder of a website project
I need to use some connectors which are actually servlets. How can I do
As part of my project I need to use some Unamanged code dlls in
Using ASP.NET MVC + jQuery : I need to use some values owned by
For now, I need to use some packages to do a emulation for IOMMU

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.