// running tests Your code should no longer have a p tag around the text asking what level ninja a user is. // tests completed

Tell us what’s happening:

Your code so far


<body>
<header>
<h1>Deep Thoughts with Master Camper Cat</h1>
</header>
<section>
<form>
  <fieldset>
    <lengend>what level ninja a user Sign up to receive Camper Cat's blog posts by email here!</lengend>
</fieldset>
  

  <label for="email">Email:</label>
  <input type="text" id="email" name="email">



  <!-- Only change code below this line -->
  
    <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>
  <!-- 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>
<h4>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...</h4>
</article>
<img src="samuraiSwords.jpeg" alt="">
<article>
<h2>Defeating your Foe: the Red Dot is Ours!</h2>
<h4>Felines the world over have been waging war on the most persistent of foes. This red nemesis combines both cunning stealth and lightning speed. But chin up, fellow fighters, our time for victory may soon be near...</h4>
</article>
<img src="samuraiSwords.jpeg" alt="">
<article>
<h2>Is Chuck Norris a Cat Person?</h2>
<h3>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?...</h3>
</article>
<footer>&copy; 2018 Camper Cat</footer>
</body>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36.

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

Link to the challenge:

h4 { text-align: center; height: 25px; } p { text-align: justify; } .links { text-align: left; color: black; } .fullCard { width: 245px; border: 1px solid #ccc; border-radius: 5px; margin: 10px 5px; padding: 4px; } .cardContent { padding: 10px; } .cardText { margin-bottom: 30px; }

Google Alphabet


Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

Above that, you must put the <fieldset> element and it should close above this line:

E.g:

  <fieldset>
        <legend>What level ninja are you?</legend>
        blah, blah, blah...
        <label for="master">Master</label>
  </fieldset
1 Like

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