Complete the code to add a descriptive title for the webpage.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>[1]</title> </head> <body> <h1>Welcome to my website</h1> </body> </html>
The <title> tag should have a clear and descriptive title to help search engines understand the page content.
Complete the code to add a meta description for SEO.
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="[1]"> <title>My Website</title> </head>
The meta description should briefly summarize the page content to improve search engine results.
Fix the error in the heading tag to improve SEO and accessibility.
<body>
<[1]>Welcome to my website</h1>
</body>h2 and closing h1.The main heading should use <h1> for SEO and accessibility. The opening and closing tags must match.
Fill both blanks to create a semantic article with a heading.
<[1]> <[2]>Article Title</[2]> <p>This is the article content.</p> </[1]>
div instead of semantic tags.h1 inside articles when it should be reserved for main page title.The article tag defines a self-contained piece of content. Inside it, use a heading tag like h2 for the article title.
Fill all three blanks to create a navigation menu with accessible links.
<nav aria-label="Main navigation"> <ul> <li><a href="[1]">Home</a></li> <li><a href="[2]">About</a></li> <li><a href="[3]">Contact</a></li> </ul> </nav>
nav and aria-label for accessibility.Use clear and correct URLs in navigation links to help users and search engines find pages easily.