DAY 2 - HTML Practice - Rate yourself 10/10 in HTML

DAY 2 - HTML Practice - Rate yourself 10/10 in HTML
  1. Create an HTML document with the proper document structure.

  2. Add metadata to your HTML document, including the document title and character set.

  3. Use semantic HTML tags like <header>, <nav>, and <footer> to structure your content.

  4. Create a basic HTML page with headings (h1-h6) and sections.

  5. Use attributes to add extra information to HTML elements.

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>90 Code Hard</title>
</head>
<body>
    <header>
        <h1>Welcome to My Website</h1>
        <nav>
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#">About</a></li>
                <li><a href="#">Services</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
        </nav>
    </header>
    <main>
        <section>
            <h2>About Us</h2>
            <p>We are Challenger who will complete <strong> "90 Code Hard Challenge, No Matter What!"</strong></p>
        </section>
        <section>
            <h2>Our Services</h2>
            <ul>
                <li>Full Stack Web Development</li>
                <li>Data Structure & Algorithm</li>
                <li>Docker</li>
            </ul>
        </section>
    </main>
    <footer>
        <p>&copy; 2023 My Website</p>
    </footer>
</body>
</html>

Above is an HTML document that fulfils the requirements of the Practice Basic Level.
For All Practice Question Visit:
https://dub.sh/hUAwQRO

Assignment:
https://dub.sh/90codehardday2

Youtube: https://www.youtube.com/@vijeetshah_
Twitter: https://twitter.com/vijeetshah_

Complete all the above Assignments to become an expert at HTML.