--- title: Named slots --- The previous example contained a _default slot_, which renders the direct children of a component. Sometimes you will need more control over placement, such as with this ``. In those cases, we can use _named slots_. In `ContactCard.svelte`, add a `name` attribute to each slot: ```svelte

Unknown name

Unknown address
``` Then, add elements with corresponding `slot="..."` attributes inside the `` component: ```svelte P. Sherman 42 Wallaby Way
Sydney
```