I know it probably uses @font-face but I dont know where to put my woff files localy to get Svelte to use a custom font. I dont know where to put the @font-face either. Thanks in advance!
Svelte doesn't require anything special to use fonts.
You can inline a @font-face
in your stylesheet or inside any .svelte
file's <style>
tag:
<h1>Hello World!</h1>
<style>
@font-face {
font-family: 'Gelasio';
font-style: normal;
font-weight: 400;
src: local('Gelasio Regular'), local('Gelasio-Regular'), url(https://fonts.gstatic.com/s/gelasio/v1/cIf9MaFfvUQxTTqS9C6hYQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
h1 {
font-family: Gelasio
}
</style>
Alternatively, you can include the font with a <link>
inside the head. For this approach <svelte:head>
is handy:
<svelte:head>
<link href="https://fonts.googleapis.com/css?family=Gelasio" rel="stylesheet">
</svelte:head>