Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hello, I don’t understand which link I use for the anchor element.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
    <link rel="icon" href="https://ik.imagekit.io/uo5sgatd3/1600w-8fYWV8dFqJw.webp?updatedAt=1749847531451">
    <meta name="description" content="This is a Trael Agency page made as an exercise of code in place.">
</head>
<body>
    <h1>Travel to Seul</h1>
    <h2>Packages</h2>
    <p>You will only need the packages that you need!</p>
    <ul>
        <li><a>Group Travels</a></li>
        <li><a>Private tours</a></li>
    </ul>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) 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

Hi @magiclovett and welcome to our community!

  1. All your five anchor elements should have an href attribute with the value of https://www.freecodecamp.org/learn and a target attribute with the value of _blank.

If you read the user stories carefully, you should see that you will end up with five anchor elements in total, two within your ul element and three within figure elements. All five should have the same href value (as above).