Please help with the following items -
- One meta element should have a name attribute with value of description and a non-empty content attribute.
- Each figure element should contain a figcaption element as its second child.
- Each a element should have a target attribute with the value of _blank. Don’t forget the links in the list items.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="describtion" content="Ireland-Tours"/>
<title>Travel Agency Page</title>
</head>
<body>
<h1>Discover Ireland</h1>
<p>Choose from one of our guided tours to explore the nature, history, architecture and of course, Guinness, that Ireland has to offer</p>
<h2>Packages</h2>
<p>We offer a variety of different guided tours that will show you all that Ireland has to offer. From visiting the Guinness Storehouse in Dublin, to the Cliffs of Moher, to Titanic Belfast and everywhere and everything inbetween.</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" targer=_blank>
<img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Architecture">
<figcaption>Visiting the architure of Ireland</figcaption></figure>
<figure>
<a href="https://www.freecodecamp.org/learn" targer=_blank>
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Nature">
<figcaption>Visiting the Nature of Ireland</figcaption></figure>
<figure>
<a href="https://www.freecodecamp.org/learn" targer=_blank>
<img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Oceans">
<figcaption>Visiting the Oceans of Ireland</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/122.0.0.0 Safari/537.36
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page