I Nested p and h1 both still my code doesn't working. any have idea on this please help me

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

  **Your code so far**

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <title>Cafe Menu</title>
</head>
<body>

 <header> <h1>  <h1>CAMPER CAFE</h1></header>
 <header> <p>Est. 2020</p> </h1> </header>
</body>
<html>
  **Your browser information:**

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

Challenge: Step 7

Link to the challenge:

There can only be one header on a page. The same concept applies to the footer element that you will learn about later on. This is similar to what you would see in a Microsoft Word document.

To rectify your issue simply eliminate one of the header elements and wrap the remaining one around the h1 and p elements together.

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