Tell us what’s happening:
-
Each a element should have an href attribute with the value of https://www.freecodecamp.org/learn. Don’t forget the links in the list items.
-
One meta element should have a name attribute with value of description and a non-empty content attribute.
-
One meta element should have its charset attribute set to UTF-8.
I continue to get these 3 tests wrong and everything looks the way its suppose to be to me. I have checked different HTML websites and my meta elements are ok and all of my links look exactly the same.
Any help is appreciated!
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset:"UTF-8">
<meta name:"description" content:"Book your flight now">
<title>Travel Agency Page</title>
</head>
<body>
<h1> Travel Destinations</h1>
<p> Travel Oppurtunities</p>
<h2> Packages</h2>
<p> Brief description of 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>
<figure>
<a href:"https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Colloseum"></a>
<figcaption> Colloseum</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>Alps</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>Sea</figcaption> </figure>
</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/134.0.0.0 Safari/537.36
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page