Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

14 lines
716 B
Markdown

---
title: Create a Set of Radio Buttons
---
# Create a Set of Radio Buttons
To solve this challenge you can break it into pieces to better understand the steps:
- Create the 'containers': lay down two `label` elements and give them the text content the challenge asks you ( one must have the text 'Indoor', one 'Outdoor', capitalization matter);
- Create the 'content' : a radio button it's just a `input` element with `type=radio` (create two of them);
- Create a _group_ of radio buttons: give both of your radio buttons the attribute `name` set to the same value ( the challenge instructions state that the group has to be named `indoor-outdoor`);
- Nest each radio button in a label;
Good luck!