Wrap Radio Buttons in a fieldset element

Tell us what’s happening: When I run the test, the solution keeps telling me that my code should no longer have p tag around the text saying What level ninja are you . But the text does not have any p tag.I have already replaced the p tags with the legend tag just as the challenge required. Now i’m unable to progress from that challenge. What do I do? please help

Your code so far


<body>
<header>
  <h1>Deep Thoughts with Master Camper Cat</h1>
</header>
<section>
  <form>
    Sign up to receive Camper Cat's blog posts by email here!
    <label for="email">Email:</label>
    <input type="text" id="email" name="email">


    <!-- Only change code below this line -->
    <fieldset>
 <legend> What level ninja are you? </legend>
      <input id="newbie" type="radio" name="levels" value="newbie">
      <label for="newbie">Newbie Kitten</label><br>
      <input id="intermediate" type="radio" name="levels" value="intermediate">
      <label for="intermediate">Developing Student</label><br>
      <input id="master" type="radio" name="levels" value="master">
      <label for="master">Master</label>
  </fieldset>
    <!-- Only change code above this line -->


    <input type="submit" name="submit" value="Submit">
  </form>
</section>
<article>
  <h2>The Garfield Files: Lasagna as Training Fuel?</h2>
  The internet is littered with varying opinions on nutritional paradigms, from catnip paleo to hairball cleanses. But let's turn our attention to an often overlooked fitness fuel, and examine the protein-carb-NOM trifecta that is lasagna...
</article>
<img src="samuraiSwords.jpeg" alt="">
<article>
  <h2>Defeating your Foe: the Red Dot is Ours!</h2>
  Felines the world over have been waging war on the most persistent of foes. This red nemesis combines both cunning stealth and lightening speed. But chin up, fellow fighters, our time for victory may soon be near...
</article>
<img src="samuraiSwords.jpeg" alt="">
<article>
  <h2>Is Chuck Norris a Cat Person?</h2>
  Chuck Norris is widely regarded as the premier martial artist on the planet, and it's a complete coincidence anyone who disagrees with this fact mysteriously disappears soon after. But the real question is, is he a cat person?...
</article>
<footer>&copy; 2018 Camper Cat</footer>
</body>

Your browser information:

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

Challenge: Wrap Radio Buttons in a fieldset Element for Better Accessibility

Link to the challenge:

You edited code that didn’t need to be edited. There are many p tags in code and you somehow got rid of all of them instead of just the one you needed.

Replace the opening and closing p tags on the following lines:

Sign up to receive Camper Cat’s blog posts by email here!

The internet is littered with varying opinions on nutritional paradigms, from catnip paleo to hairball cleanses. But let’s turn our attention to an often overlooked fitness fuel, and examine the protein-carb-NOM trifecta that is lasagna…

Felines the world over have been waging war on the most persistent of foes. This red nemesis combines both cunning stealth and lightening speed. But chin up, fellow fighters, our time for victory may soon be near…

Chuck Norris is widely regarded as the premier martial artist on the planet, and it’s a complete coincidence anyone who disagrees with this fact mysteriously disappears soon after. But the real question is, is he a cat person?..

Thank you so much! It just worked. It was really eating me up
I’ll take note of the codes I’m only meant to touch. Thank you be blessed

1 Like