18 lines
323 B
CSS
18 lines
323 B
CSS
|
@font-face {
|
||
|
font-family: Graublau Sans Web;
|
||
|
src: url(fonts/GraublauWeb.otf) format("opentype");
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: Gentium;
|
||
|
src: url('fonts/Gentium.ttf');
|
||
|
}
|
||
|
@font-face {
|
||
|
font-family: Gentium;
|
||
|
src: url("fonts/GentiumItalic.ttf");
|
||
|
font-style: italic;
|
||
|
}
|
||
|
h2 {
|
||
|
font-family: Gentium;
|
||
|
crazy: maroon;
|
||
|
}
|