Complete the code to add a title inside the document head using svelte:head.
<svelte:head>
<title>[1]</title>
</svelte:head><title> taghead or body as title textThe svelte:head tag lets you add elements like <title> inside the document head. Here, the title text should be inside the <title> tag.
Complete the code to add a meta description inside the document head using svelte:head.
<svelte:head> <meta name="description" content="[1]"> </svelte:head>
The content attribute of the <meta> tag holds the description text. Here, you fill in the description string.
Fix the error in the code to correctly add a favicon link inside the document head using svelte:head.
<svelte:head> <link rel="icon" href=[1]> </svelte:head>
The href attribute value must be a quoted string. Without quotes, it causes an error.
Fill both blanks to add a viewport meta tag inside the document head using svelte:head.
<svelte:head> <meta name=[1] content=[2]> </svelte:head>
The viewport meta tag controls how the page scales on different devices. The name should be "viewport" and content should specify width and scale.
Fill all three blanks to add charset, author meta tags, and a title inside the document head using svelte:head.
<svelte:head> <meta charset=[1]> <meta name=[2] content=[3]> <title>My Svelte App</title> </svelte:head>
The charset meta tag sets the character encoding, usually "UTF-8". The author meta tag uses name="author" and the content is the author's name.