All Projects → jpillora → Webfont Downloader

jpillora / Webfont Downloader

A small web service which converts webfonts into zip archives

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Webfont Downloader

Awesome Typography
✏︎ Curated list about digital typography 🔥
Stars: ✭ 947 (+4017.39%)
Mutual labels:  fonts, webfonts
Urbanist
Urbanist is a low-contrast, geometric sans-serif inspired by Modernist design and typography.
Stars: ✭ 374 (+1526.09%)
Mutual labels:  fonts, webfonts
Webfontpicker
A bookmarklet that previews Google Fonts on a live website
Stars: ✭ 31 (+34.78%)
Mutual labels:  fonts, webfonts
Spoqa Han Sans
Spoqa Han Sans
Stars: ✭ 306 (+1230.43%)
Mutual labels:  fonts, webfonts
Linearicons
Linearicons is the highest quality set of line icons, matching with minimalist UI designs in iOS.
Stars: ✭ 64 (+178.26%)
Mutual labels:  fonts, webfonts
Google Font Download
Locally host Google's web fonts
Stars: ✭ 619 (+2591.3%)
Mutual labels:  fonts, webfonts
Trufont
TruFont is a streamlined and hackable font editor. À l’ancienne.
Stars: ✭ 382 (+1560.87%)
Mutual labels:  fonts
Juliamono
repository for JuliaMono, a monospaced font with reasonable Unicode support.
Stars: ✭ 625 (+2617.39%)
Mutual labels:  fonts
Source Code Pro
Monospaced font family for user interface and coding environments
Stars: ✭ 17,749 (+77069.57%)
Mutual labels:  fonts
Osfcc
一个收集可用于中文字体排印的开源字体集合。
Stars: ✭ 314 (+1265.22%)
Mutual labels:  fonts
Dev Fonts
List of fonts for coding
Stars: ✭ 758 (+3195.65%)
Mutual labels:  fonts
Nerd Fonts
Iconic font aggregator, collection, & patcher. 3,600+ icons, 50+ patched fonts: Hack, Source Code Pro, more. Glyph collections: Font Awesome, Material Design Icons, Octicons, & more
Stars: ✭ 31,778 (+138065.22%)
Mutual labels:  fonts
Weird Fonts
𝑨 𝑱𝒂𝒗𝒂𝑺𝒄𝒓𝒊𝒑𝒕 𝒑𝒂𝒄𝒌𝒂𝒈𝒆 𝒕𝒉𝒂𝒕 𝒕𝒖𝒓𝒏 𝒂𝒍𝒑𝒉𝒂𝒏𝒖𝒎𝒆𝒓𝒊𝒄 𝒄𝒉𝒂𝒓𝒂𝒄𝒕𝒆𝒓𝒔 𝒊𝒏𝒕𝒐 𝒘𝒆𝒊𝒓𝒅 𝒇𝒐𝒏𝒕 𝒔𝒕𝒚𝒍𝒆.
Stars: ✭ 602 (+2517.39%)
Mutual labels:  fonts
Figlet Fonts
my collection of figlet / toilet ascii art fonts
Stars: ✭ 393 (+1608.7%)
Mutual labels:  fonts
Codeface
Typefaces for source code beautification
Stars: ✭ 5,612 (+24300%)
Mutual labels:  fonts
San Francisco Pro Fonts
The entire collection of San Francisco Pro Fonts
Stars: ✭ 329 (+1330.43%)
Mutual labels:  fonts
Firasystemfontreplacement
Modified version of the Fira Sans fonts to replace the default system font on macOS
Stars: ✭ 730 (+3073.91%)
Mutual labels:  fonts
Zilla Slab
Mozilla's Zilla Slab Type Family
Stars: ✭ 317 (+1278.26%)
Mutual labels:  webfonts
Flutter gen
The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.
Stars: ✭ 583 (+2434.78%)
Mutual labels:  fonts
Open Huninn Font
「jf open 粉圓」是基於 Kosugi Maru 改作, 由 justfont 設計師針對台灣日常應用加以優化的開源字型。 歡迎大家自由應用、自由優化、自由改做!
Stars: ✭ 665 (+2791.3%)
Mutual labels:  fonts

Webfont Downloader

Easily download Google Webfonts as a zip file. Useful for offline development. Recently ported from Node to Go.

Usage

  1. Given the Google Webfonts CSS file:

    https://fonts.googleapis.com/css?family=Open+Sans

  2. Just change googleapis in the URL to jpillora:

    https://fonts.jpillora.com/css?family=Open+Sans

  3. It should begin to download an OpenSans.zip file

  4. Use it with:

    <link rel="stylesheet" href="./path/to/my/local/css/OpenSans/OpenSans.css">
    

Examples

API

/<type>/css?family=<font:styles>

Creates a zip archive of font family provided, including each of the styles listed.

The type param is optional and can be one of ttf, woff (default),woff2, eot or detect (chooses the best type for your browser).

CLI Usage

wget --content-disposition 'https://fonts.jpillora.com/css?family=<your-font-here>'
# or
curl 'https://fonts.jpillora.com/css?family=<your-font-here>' > /tmp/font.zip

https://fonts.jpillora.com was deployed using the button below

Deploy your own

Deploy

Local Usage

$ # install go
$ go get github.com/jpillora/webfont-downloader
$ webfont-downloader
Listening on 3000...

FAQ

Google already has this service available

It does, though it provides you with only the .ttf files. This also service downloads .woff and .eof files and creates a local version of the one-line include CSS file.

MIT License

Copyright © 2014 Jaime Pillora <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].