Complete the code to declare the document type for an HTML5 page.
<!DOCTYPE [1]>The correct declaration for HTML5 is <!DOCTYPE html>. It tells the browser to use HTML5 rules.
Complete the code to start the HTML document with the root element.
<[1] lang="en">
<head> or <body> as the root.<html> tag.The root element of an HTML document is <html>. It wraps all the content.
Fix the error in the code to properly include the page title inside the head.
<head>
<title>[1]</title>
</head>The <title> tag should contain only the text for the page title, no extra tags or closing tags inside.
Fill both blanks to create a paragraph inside the body with the text 'Hello, world!'.
<body> <[1]>[2]</[1]> </body>
<div> instead of <p> for paragraphs.The paragraph tag is <p>. The text inside should be exactly 'Hello, world!'.
Fill all three blanks to create a complete minimal HTML page with a title and a heading.
<!DOCTYPE [1]> <[2] lang="en"> <head> <title>[3]</title> </head> <body> <h1>Welcome!</h1> </body> </[2]>
head as the root element.html tag at the end.The doctype is html, the root element is html, and the title text is 'My Page'.