The <svelte:head> element allows you to insert elements inside the <head> of your document:

    1. <svelte:head>
    2. <link rel="stylesheet" href="tutorial/dark-theme.css">
    3. </svelte:head>

    In server-side rendering (SSR) mode, contents of <svelte:head> are returned separately from the rest of your HTML.