Help! I'm dumbbbbb

Tell us what’s happening:
Help I’m dumb

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">
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-A307FN) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/11.1 Chrome/75.0.3770.143 Mobile Safari/537.36.

Challenge: Create a Set of Radio Buttons

Link to the challenge:

Hello! Use the examples on the left side of the screen to help you understand what this challenge is asking.

1 Like

No your not dumb you’re learning and asking questions about, things you do not understand.

If it’s hard to understand try to take it step by step

Let’s do it together shall we :3
1: Add a pair of radio buttons to your form : https://www.w3schools.com/tags/att_input_type_radio.asp
Now lets read that info shall we not?
After we done that and we take a look at the example they did gave us. Can you figure out what it is?

<label for="indoor"> 
  <input id="indoor" type="radio" name="indoor-outdoor">Indoor 
</label>

Then the next part:
each nested in its own label element.
That sound tricky doesn’t it but, don’t worry :3
We have or good friends around w3schools around
https://www.w3schools.com/html/html_elements.asp

Now we both know what nesting and radio buttons are we can complete the next part :3
One should have the option of indoor and the other should have the option of outdoor .

Both should share the name attribute of indoor-outdoor to create a radio group.

2 Likes

Oh thanks now I understand- I guess I’m not dumb. I made new friends #W3schools

Thanks a lot for your time. You are the best​:grin::fire::100:

1 Like