Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

no matter what i do, it hates lines 19-20 for rules 18 and 19

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="description" content="A travel agency page showcasing various travel packages and services.">
    <title>Travel Agency Page</title>
</head>

<body>
    <h1>Welcome to Our Travel Agency</h1>
        <p>
            Explore the world with us! We offer a variety of travel packages to suit every traveler's needs.
        </p>
        <h2>Packages</h2>
            <p>
                Choose from our selection of exciting travel packages:
            </p>
            <ul>
                <li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</a></li>
                <li><a href="https://www.freecodecamp.org/learn" target="_blank">Private Tours</a></li>
            </ul>
        <h2>Top Itineraries</h2>
            <p>
                Discover our top itineraries that cover the most popular destinations:
            </p>
            <ul>
                <li>
                    Rome
                    <figure>
                    <a href="https://www.freecodecamp.org/learn" target="_blank">
                        <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Colosseum in Rome">
                    </a>
                    <figcaption>Explore the Colosseum in Rome</figcaption>
                    </figure>
                </li>

                <li>
                    Asia
                    <figure>
                    <a href="https://www.freecodecamp.org/learn" target="_blank">
                        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps in Europe">
                    </a>
                    <figcaption>Explore the Alps in Eurpe</figcaption>
                    </figure>
                </li>

                <li>
                    North America
                    <figure>
                    <a href="https://www.freecodecamp.org/learn" target="_blank">
                        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sea in The Caribbean">
                    </a>
                    <figcaption>Explore the Sea in The Caribbean</figcaption>
                    </figure>
                </li>
            </ul>

</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @Harrylevesque

You should have only one unordered list element in your code.

Happy coding

I do not understand; there are 2 elements, the first one for the group tours / private tours and the second for the images.

After that you have another ul which is not asked for in the instructions

thanks it worked!!!

1 Like