So I am only missing step #17. I tried looking at the href, and they seem ok, and so do my “a elements”, but for some reason it’s not passing through. Maybe I’ve been looking at this too long, but this is day 3 that I have went over and over for at least 2 hours a day. Help.
Your code so far
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Travel Agency Page</title>
<meta name="description" content="Travel Agency Page with reliable service">
</head>
<body>
<h1>Travel destinations</h1>
<p>Rome, Italy, Italian Oceanside</p>
<h2>Packages</h2>
<p>Traveling opportunities are for everyone and every kind of travel.</p>
<p>These packages offered for Group Travles, and Private Tours. Group Travles are for more than 3 people, and Private tours can be for one or more people.</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>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colosseo">
</a>
<figcaption>Rome and Central Italy</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps">
</a>
<figcaption>Nature and National Parks</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sea"></a>
<figcaption>South Italy and Islands</figcaption>
</figure>
</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