January 2018
CSS - @font-face | Codrops CSS Reference
The @font-face CSS at-rule allows you to define and use your own custom fonts, thus allowing you to extend the limited set of standard system fonts that are installed by default on a computer, and that browsers can access and use.
December 2017
USERSTYLES - EXAMPLE - ss16 a Fresh attempt at (user)styling 4chan.... (2017)
ss16 - a self-centered, fresh attempt at (user)styling 4chan
*
* created on: February 11th, 2016
* last modified: May 16th, 2017
* 4chan X version: ccd0 1.13.89.3 / https://github.com/ccd0/4chan-x
* created by: @saxamaphone69
* (loose) coding style: https://github.com/necolas/idiomatic-css
*
* in an attempt to make the style as user-friendly as possible, i will
* comment most of the css to explain what it all does
*
* please leave any comments, suggestions, or feedback on github:
* https://github.com/saxamaphone69/ss16
*
*/
/**
* this userstyle utilises a lot of best practices
* and sensible defaults inspired from a variety of
* stylish and modern web frameworks and resources, mainly:
* https://github.com/twbs/bootstrap
*/
/**
* first thing we do, is we use web fonts from google!
* this is so users aren't required to download fonts prior.
* and of course, if you don't want to or don't like it,
* delete or change it accordingly. we use roboto, roboto mono,
* karla, and material icons. circular has been removed in the production
* version of ss16 to not only keep the file size down, but also
* to not have a font that i don't own the license for :^)
*/
November 2017
CSS - @font-face - CSS font-display: The Future of Font Rendering on the Web — SitePoint
Before looking in detail at the various features offered by font-display, let’s briefly consider how you might use the feature in your CSS.
First of all, font-display is not a CSS property but, as mentioned in the intro, it is a descriptor for the @font-face at-rule. This means that it must be used inside a @font-face rule, as showed in the following code:
@font-face {
font-family: 'Saira Condensed';
src: url(fonts/sairacondensed.woff2) format('woff2');
font-display: swap;
}
In this snippet I’m defining a swap value for the font Saira Condensed.
The keywords for all the available values are:
auto
block
swap
fallback
optional
April 2017
CSS - ICON - CDN @font-face - Iconic Font - iconmonstr
Iconic Font is a free set of 263+ finest icons in one font for your next project.
@font-face:
.im {
display: inline-block;
font: 24px/1 "iconmonstr-iconic-font";
text-rendering: auto;
}
1
(4 marks)