29 lines
		
	
	
		
			606 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			606 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| title: Call out Optional Actions with btn-info
 | |
| ---
 | |
| ## Call out Optional Actions with btn-info
 | |
| 
 | |
| This challenge requires you to create a new block level `<button>` element with some required classes.
 | |
| 
 | |
| ### Hint 1
 | |
| 
 | |
| The new button should be below the like button.
 | |
| 
 | |
| ### Hint 2
 | |
| 
 | |
| The button should have at least 3 classes.
 | |
| 
 | |
| ### Hint 3
 | |
| 
 | |
| The button should have the classes of `btn`, `btn-block` and `btn-info`.
 | |
| 
 | |
| ## Spoiler Alert-Solution Ahead
 | |
| 
 | |
| ### Solution
 | |
| 
 | |
| Add the following line of HTML below the like button to complete the challenge:
 | |
| 
 | |
| ```html
 | |
| <button class="btn-info btn-block btn">Information</button>
 | |
| ```
 |