close
About Us Services Blog Contact Us Learn

HTML Code Scramble Challenge - Problem 2

Advanced Code Scramble Challenge

In this advanced challenge, you have a piece of broken HTML code with multiple issues such as:

  • Missing closing tags
  • Improper nesting of elements
  • Errors in attribute formatting

Fix all the issues in the code. Once you believe your solution is correct, paste your fixed code into the text area below and click the Validate Answer button.

Broken HTML Code:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Advanced Web Page</title>
</head>
<body>
    <header>
        <h1>Welcome to the Advanced Web Page</h1>
    </header>
    <section>
        <p>Introductory text with missing closing tag.
    </section>
    <div>
        <ul>
            <li>First item
            <li>Second item</li>
        </ul>
    </div>
    <footer>
        <p>Contact: <a href="mailto:[email protected]>[email protected]</a>
    </footer>
</body>
</html>
  

Your Fixed Code:

No comments:

Post a Comment