Complete the code to add a page title in SvelteKit.
<svelte:head>
<title>[1]</title>
</svelte:head><meta> instead of <title> for the page title<svelte:head>The <title> tag inside <svelte:head> sets the page title for SEO and browser tabs.
Complete the code to add a meta description tag in SvelteKit.
<svelte:head> <meta name="description" content="[1]" /> </svelte:head>
The meta tag with name="description" provides a summary for search engines.
Fix the error in the meta charset tag inside SvelteKit head.
<svelte:head>
<meta charset=[1] />
</svelte:head>The charset value must be a quoted string like "UTF-8" for valid HTML.
Fill both blanks to add viewport meta tag for responsive design in SvelteKit.
<svelte:head> <meta name="viewport" content="width=[1], initial-scale=[2]" /> </svelte:head>
The viewport meta tag controls layout on mobile devices. device-width sets width to screen size, and 1.0 sets initial zoom.
Fill all three blanks to add Open Graph meta tags for social sharing in SvelteKit.
<svelte:head> <meta property="og:title" content="[1]" /> <meta property="og:description" content="[2]" /> <meta property="og:image" content="[3]" /> </svelte:head>
Open Graph tags improve how links appear on social media. Title, description, and image must be set properly.