use fonts locally

This commit is contained in:
GNUxeava 2022-03-18 12:03:54 +05:30
parent 9e12568e81
commit 509f5757f7

View file

@ -1,5 +1,13 @@
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap'); @font-face {
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Lora:ital@0;1&display=swap'); font-family: 'Libre Baskerville';
src: url('fonts/Libre_Baskerville/LibreBaskerville-Regular.ttf');
}
@font-face {
font-family: 'Lora';
src: url('fonts/Lora/Lora-VariableFont_wght.ttf');
}
body { body {
background-color: linen; background-color: linen;
@ -14,7 +22,7 @@ header {
} }
h1, h2 { h1, h2 {
font-family: 'Libre Baskerville', sans-serif; font-family: 'Libre Baskerville', serif;
} }
a { a {
@ -27,7 +35,7 @@ a:hover, a:active {
} }
.content { .content {
font-family: 'Lora', sans-serif; font-family: 'Lora', serif;
} }
header, main, section, footer { header, main, section, footer {