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
This commit is contained in:
Randell Dawson
2019-07-24 00:59:27 -07:00
committed by mrugesh
parent c911e77eed
commit 1494a50123
990 changed files with 13202 additions and 8628 deletions

View File

@@ -1,11 +1,17 @@
---
title: Apply the Default Bootstrap Button Style
---
## Apply the Default Bootstrap Button Style
# Apply the Default Bootstrap Button Style
---
## Problem Explanation
The last challenge had you creating 6 buttons, 3 in each well element. This time you are required to add classes to those buttons.
### Hint
---
## Hints
### Hint 1
A class is declared using the following syntax:
@@ -13,9 +19,11 @@ A class is declared using the following syntax:
<button class="class(es)Name"></button>
```
### Solution
Since you have to add the ``` btn ``` and ``` btn-default ``` classes, the following is the solution:
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
```html
<div class="container-fluid">
@@ -38,3 +46,4 @@ Since you have to add the ``` btn ``` and ``` btn-default ``` classes, the follo
</div>
</div>
```
</details>