How to add h1 in .header

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Photo Gallery</title>
  <link rel="stylesheet" href="./styles.css">
</head>
<body>
  <div class="header"></div>
  <h1>FLEXBOX PHOTO GALLERY</h1>
</body>
</html>
/* 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/102.0.0.0 Safari/537.36

Challenge: Step 4

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

<body>
    <div class="header"></div>
    <h1>FLEXBOX PHOTO GALLERY</h1>
  </body>

Hint-: Your .header element should have an h1 element.

Your .header element does not have an h1 element in it.

i know that, how to add it and where i should add it?

You should add it between the opening and closing div tags.

<div id="example">
  <p>I am a nested child of the example div</p>
</div>
1 Like

i already did that but it still shows error

What is your current code? What does the error say?

Here the h1 tag should be in the div tag where the class is .header
[redacted]
lass is you use as the header.

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

it says that your .header have the element h1.

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