KB-Styling

Rate this Article
No votes yet

SubHead1

 <h2>SubHead1</h2> 

SubHead2

 <h3>SubHead2</h3> 

SubHead3

 <h4>SubHead3</h4> 

Paragraph Text

 <p>Paragraph Text</p> 

Link

 <a href="url">Link</a> 
Unordered list
  • List 1
  • List 1
  • List 1
  • List 4
 <ul>
    <li>List 1</li>
    <li>List 1</li>
    <li>List 1</li>
    <li>List 4</li>
</ul>; 
Numbered list
  1. List 1
  2. List 1
  3. List 1
  4. List 4
 <ol>
    <li>List 1</li>
    <li>List 1</li>
    <li>List 1</li>
    <li>List 4</li>
</ol> 
 Highlight 
 <p class="highlight">Highlight</p> 
 Warning 
 <p class="warning">Warning</p> 
 Error 
 <p class="error">Error</p> 
 Success 
<p class="success">Success</p> 
                                          Table Regular
Features SubHeading1 SubHeading2
Feature 1 Yes Optional
Feature 2 Yes Yes
Feature 3 No Yes
Feature 4 Yes Yes

 

 

<table class="table">
    <caption>Table: Title</caption>
    <thead>
        <tr>
            <th class="right">Features</th>
            <th>SubHeading1</th>
            <th>SubHeading2</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th>Feature 1</th>
            <td>Yes</td>
            <td>Optional</td>
        </tr>
        <tr>
            <th>Feature 2</th>
            <td>Yes</td>
            <td>Yes</td>
        </tr>
        <tr>
            <th>Feature 3</th>
            <td>No</td>
            <td>Yes</td>
        </tr>
        <tr>
            <th>Feature 4</th>
            <td>Yes</td>
            <td>Yes</td>
        </tr>
    </tbody>
</table>
                                               Table Striped
Features SubHeading1 SubHeading2
Feature 1 Yes Optional
Feature 2 Yes Yes
Feature 3 No Yes
Feature 4 Yes Yes

 

 

<table class="table table-striped">
    <caption>Table: Title</caption>
    <thead>
        <tr>
            <th class="right">Features</th>
            <th>SubHeading1</th>
            <th>SubHeading2</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th>Feature 1</th>
            <td>Yes</td>
            <td>Optional</td>
        </tr>
        <tr>
            <th>Feature 2</th>
            <td>Yes</td>
            <td>Yes</td>
        </tr>
        <tr>
            <th>Feature 3</th>
            <td>No</td>
            <td>Yes</td>
        </tr>
        <tr>
            <th>Feature 4</th>
            <td>Yes</td>
            <td>Yes</td>
        </tr>
    </tbody>
</table>

 

Keys

 <kbd>Ctrl</kbd>+<kbd>A</kbd>

Images

alt
                                                                                                     Caption
<div class="image"><img alt="description" src="image url" />
<div class="caption">
<p>Caption</p>
</div>
</div>