Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

My meta tag isn’t correct, what should I do?

Your code so far

<!Doctype html>
 <html lang="en">
   <head>
  <meta charset ="UTF-8">
     <meta></meta>
        <title>Travel Agency page</title>
</head>
<body>
     <h1>Travel Destinations </h1>
  <p>link up for your travel consultations.</p>
 <h2>Packages</h2>
  <p>we offer journeys to various destinations.</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>
 <ol>
   <li>
   <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
     <img src ="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="width =50px height=50px"href="https://www.freecodecamp.org/learn" target="_blank"></img></a>
<figcaption>colosseoum in rome</figcaption>
   </figure>
   </li>
   </ol>
   <ol>
   <li>
     <figure>
       <a href="https://www.freecodecamp.org/learn" target="_blank">
       <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="width=50px height=50px"href="https://www.freecodecamp.org/learn" target="_blank"></img></a>
  <figcaption>journey of the swiss mountain alps</figcaption>
     </figure>
   </li>
   </ol>
   <ol>
   <li>
     <figure>
       <a href="https://www.freecodecamp.org/learn" target="_blank">
       <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="width= 50px height=50px"href="https://www.freecodecamp.org/learn" target="_blank"></img></a>
       <figcaption>journey to remote sea</figcaption>
     </figure>
   </li>
   </ol>
   </body>
 </html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page

Welcome to the forum @emmanuellaorjih08

  1. One meta element should have a name attribute with value of description and a non-empty content attribute.

The two meta elements need specific attributes and values.

Happy coding

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.