source: extensions/modus/css/fontello/README.txt @ 25794

Last change on this file since 25794 was 25794, checked in by rvelices, 10 years ago
File size: 2.8 KB
Line 
1This webfont is generated by http://fontello.com open source project.
2
3
4================================================================================
5Please, note, that you should obey original font licences, used to make this
6webfont pack. Details available in LICENSE.txt file.
7
8- Usually, it's enough to publish content of LICENSE.txt file somewhere on your
9  site in "About" section.
10
11- If your project is open-source, usually, it will be ok to make LICENSE.txt
12  file publically available in your repository.
13
14- Fonts, used in Fontello, don't require to make clickable links on your site.
15  But any kind of additional authors crediting is welcome.
16================================================================================
17
18
19Comments on archive content
20---------------------------
21
22- /font/* - fonts in different formats
23
24- /css/*  - different kinds of css, for all situations. Should be ok with
25  twitter bootstrap. Also, you can skip <i> style and assign icon classes
26  directly to text elements, if you don't mind about IE7.
27
28- demo.html - demo file, to show your webfont content
29
30- LICENSE.txt - license info about source fonts, used to build your one.
31
32- config.json - keeps your settings. You can import it back to fontello anytime,
33  to continue your work
34
35
36Why so many CSS files ?
37-----------------------
38
39Because we like to fit all your needs :)
40
41- basic file, <your_font_name>.css - is usually enougth, in contains @font-face
42  and character codes definition
43
44- *-ie7.css - if you need IE7 support, but still don't wish to put char codes
45  directly into html
46
47- *-codes.css and *-ie7-codes.css - if you like to use your own @font-face
48  rules, but still wish to benefit of css generation. That can be very
49  convenient for automated assets build systems. When you need to update font -
50  no needs to manually edit files, just override old version with archive
51  content. See fontello source codes for example.
52
53- *-embedded.css - basic css file, but with embedded WOFF font, to avoid
54  CORS issues in Firefox and IE9+, when fonts are hosted on the separate domain.
55  We strongly recommend to resolve this issue by `Access-Control-Allow-Origin`
56  server headers. But if you ok with dirty hack - this file is for you. Note,
57  that data url moved to separate @font-face to avoid problems with <IE9, when
58  string is too long.
59
60- animate.css - use it to get ideas about spinner rotation animation.
61
62
63Attention for server setup
64--------------------------
65
66You MUST setup server to reply with proper `mime-types` for font files. In other
67case, some browsers will fail to show fonts.
68
69Usually, `apache` already has necessary settings, but `nginx` and other
70webservers should be tuned. Here is list of mime types for our file extentions:
71
72- `application/vnd.ms-fontobject` - eot
73- `application/x-font-woff` - woff
74- `application/x-font-ttf` - ttf
75- `image/svg+xml` - svg
Note: See TracBrowser for help on using the repository browser.