* 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
		
			
				
	
	
	
		
			716 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			716 B
		
	
	
	
	
	
	
	
title
| 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 
labelelements 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 
inputelement withtype=radio(create two of them); - Create a group of radio buttons: give both of your radio buttons the attribute 
nameset to the same value ( the challenge instructions state that the group has to be namedindoor-outdoor); - Nest each radio button in a label;
 
Good luck!