Teil 1 - Web Fonts
woff
Moderne browser
woff2
Moderne browser
svg
Alte Safari und iOS
eot
Alte Microsoft IE
ttf
Meisten Browser und alte aber viel zu gross
otf
Meisten Browser und alte mit ligatures
Für alle was dabei...
@font-face {
font-family: 'MyWebFont';
/* IE9 Compat Modes */
src: url('webfont.eot');
/* IE6-IE8 */
src: url('webfont.eot?#iefix') format('embedded-opentype'),
/* Super Modern Browsers */
url('webfont.woff2') format('woff2'),
/* Pretty Modern Browsers */
url('webfont.woff') format('woff'),
/* Safari, Android, iOS */
url('webfont.ttf') format('truetype'),
/* Legacy iOS */
url('webfont.svg#svgFontName') format('svg');
}
Ein typographisches no-go!
Falls die Schrift in einem benötigtem Schnitt nicht verfügbar ist, erstellt der Browser eine künstliche Version, die meist sehr schlecht lesbar ist
In @font-face können varianten und gewichte angegeben werden
@font-face {
font-family: "myfont";
src: url("font-regular.woff2") format("woff2");
font-weight: normal;
}
@font-face {
font-family: "myfont";
src: url("font-bold.woff2") format("woff2");
font-weight: bold;
}
@font-face {
font-family: "myfont";
src: url("font-bold.woff2") format("woff2");
font-weight: normal;
font-style: italic;
}
Harmonische Verhältnisse
Hallo
Hallo
Hallo
Hallo
square ratio (2/1)
Die magisch harmonische Konstante in unserem Universum
1.618
Eine Kunst für sich
http://jsbin.com