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 2HTML Foundation
3 hours

Connecting the Web - Links, Images & Lists

Build an interactive multi-page website with media

Learning Objectives

  • Create internal and external links
  • Add and optimize images
  • Master file path navigation
  • Organize content with lists
  • Build multi-page websites

Topics Covered

  • 1
    Anchor Tags and Link Types
  • 2
    Image Elements and Paths
  • 3
    Understanding File Paths (Absolute vs Relative)
  • 4
    Image Formats and Optimization
  • 5
    Unordered and Ordered Lists
  • 6
    Description Lists
  • 7
    Nested Lists

Assignment

Travel Destinations Website

Complete a 3-page travel website with 5 destinations, unique images, and navigation links between all pages. Research HTML entities for next week.

Resources

  • • Image Optimization Guide
  • • File Path Tutorial
View All Assignments

Session's Best Member

FH

Fatima Hassan

Grade: 95/100✓ Attended

Recognition:

Beautiful website design with perfect navigation and image optimization

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>Travel Destinations</title>
</head>
<body>
    <header>
        <h1>Amazing Travel Destinations</h1>
        <nav>
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="destinations.html">Destinations</a></li>
                <li><a href="contact.html">Contact</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <section id="destinations">
            <h2>Top Destinations</h2>
            
            <article>
                <h3>Paris, France</h3>
                <img src="images/paris.jpg" alt="Eiffel Tower in Paris" width="300" height="200">
                <p>The city of lights offers amazing culture and cuisine.</p>
                <a href="https://en.wikipedia.org/wiki/Paris" target="_blank">Learn more about Paris</a>
            </article>

            <article>
                <h3>Tokyo, Japan</h3>
                <img src="images/tokyo.jpg" alt="Tokyo skyline at night" width="300" height="200">
                <p>Experience the perfect blend of tradition and modernity.</p>
                <ul>
                    <li>Sushi restaurants</li>
                    <li>Cherry blossoms</li>
                    <li>Modern technology</li>
                </ul>
            </article>
        </section>
    </main>

    <footer>
        <p>&copy; 2024 Travel Guide. All rights reserved.</p>
    </footer>
</body>
</html>
Live Preview: Connecting the Web - Links, Images & Lists
desktop viewInteractive preview of the final result
Loading preview...

What you'll see:

Multi-page navigation structure
Image integration with proper alt text
External and internal links
Organized content with lists
Semantic article elements

A multi-page travel website showcasing destinations with images, navigation between pages, and organized content using lists and links.

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.

Previous SessionNext Session