45 lines
811 B
CSS
45 lines
811 B
CSS
@font-face{
|
|
font-family: 'Bagnard';
|
|
src: url('../fonts/Bagnard.otf');
|
|
}
|
|
|
|
@font-face{
|
|
font-family: 'Gap';
|
|
src: url('../fonts/GapSansBold.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'roboto';
|
|
src: url(../fonts/roboto/Roboto-Regular.ttf);
|
|
font-weight: 500;
|
|
}
|
|
@font-face {
|
|
font-family: 'roboto';
|
|
src: url(../fonts/roboto/Roboto-Bold.ttf);
|
|
font-weight: 600;
|
|
}
|
|
@font-face {
|
|
font-family: 'roboto';
|
|
src: url(../fonts/roboto/Roboto-BoldItalic.ttf);
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: 'roboto';
|
|
src: url(../fonts/roboto/Roboto-Black.ttf);
|
|
font-weight: 700;
|
|
}
|
|
@font-face {
|
|
font-family: 'roboto';
|
|
src: url(../fonts/roboto/Roboto-BlackItalic.ttf);
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
}
|
|
|
|
|
|
|
|
h2{
|
|
font-size: 8em;
|
|
font-family: 'Roboto';
|
|
font-weight: 500;
|
|
} |