0
0
HTMLmarkup~20 mins

First HTML page - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
HTML Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
rendering
intermediate
2:00remaining
What will this HTML page display?
Look at this HTML code. What text will you see on the page when opened in a browser?
HTML
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>My Page</title>
</head>
<body>
  <h1>Welcome to my website</h1>
  <p>This is my first page.</p>
</body>
</html>
AA big heading saying 'Welcome to my website' and a paragraph saying 'This is my first page.'
BOnly the title 'My Page' shown on the page
CA blank page with no text
DAn error message because the HTML is missing the <header> tag
Attempts:
2 left
💡 Hint
Remember that text inside

and

tags inside the shows on the page.