├── README.md ├── bower.json ├── ubuntu-complete.html ├── ubuntu-condensed.html ├── ubuntu-light.html ├── ubuntu-mono.html └── ubuntu.html /README.md: -------------------------------------------------------------------------------- 1 | # font-ubuntu 2 | Polymer imports for ubuntu fonts. 3 | More info at http://font.ubuntu.com/. 4 | 5 | ## usage 6 | This package provides multiple version of the fonts, so that you can select the best version depending on the family, weight and style you are willing to download: 7 | * `ubuntu.html` contains the regular ubuntu font at different weights, in normal and italic style. 8 | * `ubuntu-mono.html` provides the mono family of the ubuntu font. 9 | * `ubuntu-condensed.html` is similar, but for the condensed family. 10 | * `ubuntu-complete.html` contains all of the 3 above font families. 11 | * `ubuntu-light.html` contains the regular ubuntu font at different weights, but only in its normal style variant. 12 | 13 | ## license 14 | Complete license is available at http://font.ubuntu.com/licence/. 15 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-ubuntu", 3 | "version": "1.0.0", 4 | "description": "An HTML import for Ubuntu", 5 | "authors": [ 6 | "Didier Roche " 7 | ], 8 | "keywords": [ 9 | "font", 10 | "ubuntu" 11 | ], 12 | "repository": { 13 | "type": "git", 14 | "url": "git://github.com/ubuntu/font-ubuntu-polymer.git" 15 | }, 16 | "main": "font-ubuntu.html", 17 | "license": "http://font.ubuntu.com/licence/", 18 | "homepage": "https://github.com/ubuntu/font-ubuntu-polymer/", 19 | "ignore": [ 20 | "/.*" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /ubuntu-complete.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ubuntu-condensed.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /ubuntu-light.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /ubuntu-mono.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /ubuntu.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | --------------------------------------------------------------------------------