--- 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: ```html

Unknown name

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