Verse Logo
WEB Dev - Verse'26WEB - V'26
HomeSessionsAssignmentsCode ExamplesMembersLeaderboardAboutContact

Team WEB - Verse'26

Transform from absolute beginner to confident, portfolio-ready web developer in 16 weeks. Master modern web technologies through hands-on projects.

Quick Links

  • Sessions
  • Assignments
  • About
  • Contact

Resources

  • MDN Web Docs
  • W3Schools
  • GitHub
  • CodePen
© 2025 Abdelrhman Nasr. All rights reserved.
Back to Sessions
Week 1HTML Foundation
3 hours

The Foundation - HTML Basics & Structure

Students build their first complete webpage

Learning Objectives

  • Understand how the web works
  • Set up development environment
  • Write semantic HTML structure
  • Use proper heading hierarchy
  • Apply text formatting elements

Topics Covered

  • 1
    Course introduction and success roadmap
  • 2
    Install VS Code + Essential Extensions
  • 3
    DOCTYPE and HTML Structure
  • 4
    Head Elements Deep Dive
  • 5
    Comments and Best Practices
  • 6
    Content Elements (Headings, Paragraphs, Formatting)

Assignment

Enhanced About Me Page

Enhance your 'About Me' page with more content, add at least 10 different HTML elements, and write comments explaining each section.

Resources

  • • MDN HTML Basics
  • • VS Code Setup Guide
View All Assignments

Session's Best Member

FH

Fatima Hassan

Grade: 98/100✓ Attended

Recognition:

Outstanding HTML structure and excellent use of semantic elements

View Full Leaderboard
Session Code & Examples
HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About Me - John Doe</title>
</head>
<body>
    <!-- Header Section -->
    <header>
        <h1>Welcome to My Personal Page</h1>
        <nav>
            <a href="#about">About</a>
            <a href="#skills">Skills</a>
            <a href="#contact">Contact</a>
        </nav>
    </header>

    <!-- Main Content -->
    <main>
        <section id="about">
            <h2>About Me</h2>
            <p>Hello! I'm <strong>John Doe</strong>, a passionate web developer learning to build amazing websites.</p>
            <p>I enjoy <em>coding</em>, reading, and exploring new technologies.</p>
        </section>

        <section id="skills">
            <h2>My Skills</h2>
            <ul>
                <li>HTML5</li>
                <li>Problem Solving</li>
                <li>Communication</li>
            </ul>
        </section>
    </main>

    <!-- Footer -->
    <footer>
        <p>&copy; 2024 John Doe. All rights reserved.</p>
    </footer>
</body>
</html>
Live Preview: The Foundation - HTML Basics & Structure
desktop viewInteractive preview of the final result
Loading preview...

What you'll see:

Semantic HTML5 elements
Proper heading hierarchy (h1, h2)
Navigation with anchor links
Well-structured content sections
Footer with copyright information

A clean, semantic HTML page with proper structure, headings hierarchy, and essential elements like header, main, sections, and footer.

Try different device sizes using the buttons above. Click maximize for full-screen preview.

Share & Explore
LinkedIn PostGitHub Repo

Pro tip: Copy the code above and practice building it yourself! Check out the GitHub repo for the complete project files and additional resources.

Next Session