My code is not finished yet, but what I do have is being flagged as wrong and I can’t figure out why. Please help?
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset= "utf-8">
<title> Travel Agency Page</title>
<meta
name="description"
content="Meet with our top agents to schedule the trip of a lifetime to the sunny shores of Bermuda!">
</head>
<body>
<h1> Welcome to Bermuda</h1>
<p> Come explore the pink, sandy shores of this hook-shaped jewel of the North Atlantic!</p>
<h2> Packages</h2>
<p> Choose Your Adventure!
<ul>
<li><a href=https://www.gotobermuda.com/experiences/spas>Group Travels</a></li>
<li><a href="https://www.gotobermuda.com/experiences">Private Tours</a></li>
<h2>Top Itineraries</h2>
<figure>
<img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Boat on the Water">
<p> Beach Tours</p>
<figure>
<img src="https://danceinteractive.jacobspillow.org/wp-content/uploads/2022/07/20220622_AmericanaToMe_pChristopherDuggan_001-scaled.jpg" alt="Gombey Dancers on a stage">
<p>Culture and Tradition Exposure</p>
<figure>
<img src="https://www.celebritycruises.com/blog/content/uploads/2022/11/bermuda-food-fish-chowder-1024x683.jpg" alt= "Bermuda Fish Chowder">
<p> Food Tours</p>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page
UPDATE
So, my code is pretty much complete now, but for some reason, it’s saying that my <a> element is either incomplete or wrong. I looked at it and I thought I did them correctly, but any ideas as to what to fix would be appreciated!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset= "utf-8">
<title> Travel Agency Page</title>
<meta
name="description"
content="Meet with our top agents to schedule the trip of a lifetime to the sunny shores of Bermuda!">
</head>
<body>
<h1> Welcome to Bermuda</h1>
<p> Come explore the pink, sandy shores of this hook-shaped jewel of the North Atlantic!</p>
<h2> Packages</h2>
<p> Choose Your Adventure!
<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/sea.jpg" alt="Boat on the Water">
<figcaption> Click Here To Schedule A Boat Ride Around the Island!
</a>
</figure>
<p> Beach Tours</p>
<figure>
<a href="https//www.freecodecamp.org/learn" target="_blank">
<img src="https://danceinteractive.jacobspillow.org/wp-content/uploads/2022/07/20220622_AmericanaToMe_pChristopherDuggan_001-scaled.jpg" alt="Gombey Dancers on a stage">
<figcaption> Click Here To Book Performing Arts Tickets!
</a>
</figcaption>
<p>Culture and Tradition Exposure</p>
<figure>
<a href= "https://https//www.freecodecamp.org/learn" target ="_blank">
<img src="https://www.celebritycruises.com/blog/content/uploads/2022/11/bermuda-food-fish-chowder-1024x683.jpg" alt= "Bermuda Fish Chowder"></img>
<figcaption> Click Here To Reserve Spot At Top Restaraunts!
</a>
</figcaption>
<p> Food Tours</p>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset= "utf-8">
<title> Travel Agency Page</title>
<meta
name="description"
content="Meet with our top agents to schedule the trip of a lifetime to the sunny shores of Bermuda!">
</head>
<body>
<h1> Welcome to Bermuda</h1>
<p> Come explore the pink, sandy shores of this hook-shaped jewel of the North Atlantic!</p>
<h2> Packages</h2>
<p> Choose Your Adventure!
<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/sea.jpg" alt="Boat on the Water">
<figcaption> Click Here To Schedule A Boat Ride Around the Island!
</a>
</figure>
<p> Beach Tours</p>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://danceinteractive.jacobspillow.org/wp-content/uploads/2022/07/20220622_AmericanaToMe_pChristopherDuggan_001-scaled.jpg" alt="Gombey Dancers on a stage">
<figcaption> Click Here To Book Performing Arts Tickets!
</a>
</figcaption>
<p>Culture and Tradition Exposure</p>
<figure>
<a href="https://https//www.freecodecamp.org/learn" target ="_blank">
<img src="https://www.celebritycruises.com/blog/content/uploads/2022/11/bermuda-food-fish-chowder-1024x683.jpg" alt= "Bermuda Fish Chowder"></img>
<figcaption> Click Here To Reserve Spot At Top Restaraunts!
</a>
</figcaption>
<p> Food Tours</p>
</body>
</html>