Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I can’t understand what I’m doing wrong in step 5:
“One ‘meta’ element should have a name attribute with the value of ‘description’ and a non-empty ‘content’ attribute”.

I can’t see where I went wrong. Any suggestions?

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 Opportunities</p>
  <h2>Packages</h2>
  <p>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="Coliseum"></a><figcaption>Coliseum</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/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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi @christoffboss1020 ! :waving_hand:

Here, your syntax isn’t good :

Are you sure this is how to define an attribute ? Double check all the symbols.

https://www.freecodecamp.org/learn/responsive-web-design-v9/lecture-understanding-html-attributes/what-are-attributes

Hi,
here is the relevant line: <meta name:"description" content:"Book your flight now">

Replace the : with =.