📊 Chapter 1: Web Basics & HTML Fundamentals
🏗️ Chapter 2: Document Structure & Headings
📝 Chapter 3: Content Elements & Text Formatting
🔗 Chapter 4: Links, Images & Media
📋 Chapter 5: Lists & Tables
📝 Chapter 6: Forms & Input Elements
🎯 Advanced Practice: Code Analysis
Analyze the following HTML code and answer the questions:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sample Page</title>
</head>
<body>
<header>
<h1>Welcome</h1>
<nav>
<a href="#main">Skip to main</a>
</nav>
</header>
<main id="main">
<article>
<h2>Article Title</h2>
<p>This is a <strong>sample</strong> paragraph.</p>
<img src="image.jpg" alt="Sample image" />
</article>
</main>
</body>
</html>
📈 Progress Tracker
Practice Tips:
- Review incorrect answers and understand why they're wrong
- Practice writing HTML code from scratch
- Test your pages in different browsers
- Use semantic HTML for better accessibility
- Validate your HTML using online validators