Learn CSS Flexbox by Building a Photo Gallery - Step 2

what am i doing wrong ?
Your code so far

<!-- file: index.html -->

<!-- User Editable Region -->

<!DOCTYPE html>
<html lang="en">
  <head>
<meta name="viewport",content="width=device-width",initial-scale="1.0">
<meta charset="UTF-8">
  </head>
  <body>
  </body>
</html>

<!-- User Editable Region -->

/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36

Challenge: Learn CSS Flexbox by Building a Photo Gallery - Step 2

Link to the challenge:

Too many quotes around the value of the content attribute in the first meta tag. it’s only one value so you only need one set of quotes.

<tag  attribute="value"  attribute="value">

Also, google the phrase “html boiler plate” and select the freeCodeCamp link in the list. Take a look at the meta tags.

Hope this this helps

1 Like