Tell us what’s happening:
I guess i followed the instruction properly, i attributed the value to each checkboxes, keeps giving me error, i have been stocked for hours. Please someone help me. The value got me in pain!!!
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 value="indoor" type="radio" name="indoor-outdoor" checked> Indoor</label>
<label><input value="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label><br>
<label><input value="Loving"type="checkbox" name="personality" checked> Loving</label>
<label><input value="Lazy" type="checkbox" name="personality"> Lazy</label>
<label><input value="Energetic" type="checkbox" name="personality"> Energetic</label><br>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</main>
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 12739.105.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.158 Safari/537.36
.
Challenge: Use the value attribute with Radio Buttons and Checkboxes
Link to the challenge: