Headers

<h1>This is a test</h1>
<h2>This is a test</h2>
<h3>This is a test</h3>
<h4>This is a test</h4>
<h5>This is a test</h5>
<h6>This is a test</h6>

This is a test

This is a test

This is a test

This is a test

This is a test
This is a test

Buttons

<button class="btn btn-primary">Primary Button</button>
<button class="btn btn-secondary">Secondary Button</button>
<button class="btn btn-default">Default Button</button>
//NOTE:More sizes available below Large Buttons - add btn-lg Small Buttons - add btn-sm Extra-Small Buttons - add btn-xs

Default Size

Large Size

Small Size

Extra Small Size

Tables

<table> <tr> <th>Assessment Name</th> <th>Focused Review</th> </tr> <tr> <td><a href="#">RN Real Life</a></td> <td>19 min</td> </tr> </table>
Assessment Name Focused Review
RN Real Life 19 min
Pharmacology Made Easy 19 min
Nurse logic 19 min
Dosage and Calculations 19 min

Forms

<form class="form-inline"> <div class="form-group"> <label for="">Name Label</label> <input type="text" class="form-control" placeholder="Text Input" /> </div> </form>
<div class="radio"> <input type="radio" name="radio-group" id="radio1" tabindex="0" /> <label for="radio1">Radio option 1</label> </div>
<div class="radio"> <input type="radio" name="radio-group" id="radio2" tabindex="0" /> <label for="radio2">Radio option 1</label> </div>
<div class="checkbox"> <input type="checkbox" name="checkbox-group" id="checkbox1" tabindex="0" /> <label for="checkbox1">checkbox option 1</label> </div>
<div class="checkbox"> <input type="checkbox" name="checkbox-group" id="checkbox2" tabindex="0" /> <label for="checkbox2">checkbox option 1</label> </div>
<label>Select Menu (Secondary) Label</label> <div class="select select-secondary"> <select> <option>Option One</option> <option>Option Two</option> <option>Option Three</option> <option>Option Four</option> <option>Option Five</option> </select> </div>
<label>Select Menu (Primary) Label</label> <div class="select select-primary"> <select> <option>Primary Option One Long</option> <option>Option Two</option> <option>Option Three</option> <option>Option Four</option> <option>Option Five</option> </select> </div>