Hhow to solve this

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="/submit-cat-photo">
  <label><input type="radio" name="indoor-outdoor"> Indoor</label>
  <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <label><input type="checkbox" name="personality"> Loving</label>
  <label><input type="checkbox" name="personality"> Lazy</label>
  <label><input type="checkbox" name="personality"> Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required><label for="indoor"> 
<input id="indoor" value="indoor" type="radio" name="indoor-outdoor">Indoor 
</label>
<label for="outdoor"> 
</label>
<input id="outdoor" value="outdoor" type="radio" name="indoor-outdoor">outdoor
</label>
<label>
<input id="outdoor" value="loving" type="radio" name="outdoor">loving
<label><input type="checkbox" name="loving" value="loving"> loving</label>
<
</label>
<label>
<input id="outdoor" value="lazy" type="radio" name="indoor-outdoor">lazy
</label>
<label>
<input id="outdoor" value="energitic" type="radio" name="indoor-outdoor">energitic
</label>
  <button type="submit">Submit</button>
</form>
</main>

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.106 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

Hi!

You need to declare value attribute in their respective checkbox and radio input. Like below:

<label><input type="radio" name="indoor-outdoor" value="indoor"> Indoor</label>
<label><input type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label><br>
<label><input type="checkbox" name="personality" value="loving"> Loving</label>
<label><input type="checkbox" name="personality" value="lazy"> Lazy</label>
<label><input type="checkbox" name="personality" value="energetic"> Energetic</label><br>

Remove these duplicate lines:

<input id="indoor" value="indoor" type="radio" name="indoor-outdoor">Indoor 
</label>
<label for="outdoor"> 
</label>
<input id="outdoor" value="outdoor" type="radio" name="indoor-outdoor">outdoor
</label>
<label>
<input id="outdoor" value="loving" type="radio" name="outdoor">loving
<label><input type="checkbox" name="loving" value="loving"> loving</label>
<
</label>
<label>
<input id="outdoor" value="lazy" type="radio" name="indoor-outdoor">lazy
</label>
<label>
<input id="outdoor" value="energitic" type="radio" name="indoor-outdoor">energitic
</label>

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.

Thank you for understanding.

2 Likes

Thank you Sir. Will correct it in my future posts.

Guide me always,
Madan.