mirror of https://github.com/sveltejs/svelte
19 lines
576 B
19 lines
576 B
---
|
|
title: <svelte:head>
|
|
---
|
|
|
|
```svelte
|
|
<svelte:head>...</svelte:head>
|
|
```
|
|
|
|
This element makes it possible to insert elements into `document.head`. During server-side rendering, `head` content is exposed separately to the main `body` content.
|
|
|
|
As with `<svelte:window>`, `<svelte:document>` and `<svelte:body>`, this element may only appear at the top level of your component and must never be inside a block or element.
|
|
|
|
```svelte
|
|
<svelte:head>
|
|
<title>Hello world!</title>
|
|
<meta name="description" content="This is where the description goes for SEO" />
|
|
</svelte:head>
|
|
```
|