succinct-bg2
succinct-bg2

Typography

Headings

All HTML headings, <h1> through <h6>, are available.

Heading Example

<h1></h1>

h1. Bootstrap heading

<h2></h2>

h2. Bootstrap heading

<h3></h3>

h3. Bootstrap heading

<h4></h4>

h4. Bootstrap heading

<h5></h5>

h5. Bootstrap heading

<h6></h6>

h6. Bootstrap heading
<h1>h1. Bootstrap heading</h1>
<h2>h2. Bootstrap heading</h2>
<h3>h3. Bootstrap heading</h3>
<h4>h4. Bootstrap heading</h4>
<h5>h5. Bootstrap heading</h5>
<h6>h6. Bootstrap heading</h6>

Paragraph

HTML paragraph <p> are available.

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.

<p>Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.</p>

List

HTML list <ul> are available.

  • Lorem Ipsum is simply dummy text of the printing.
  • It has survived not only five centuries.
  • It was popularised in the 1960s with the release of Letraset sheets.
  • Lorem Ipsum has been the industry's standard dummy text ever.
  • Lorem Ipsum is simply dummy text.
<ul class="list">
<li>Lorem Ipsum is simply dummy text of the printing.</li>
<li>It has survived not only five centuries.</li>
<li>It was popularised in the 1960s with the release of Letraset sheets.</li>
<li>Lorem Ipsum has been the industry's standard dummy text ever.</li>
<li>Lorem Ipsum is simply dummy text.</li>
</ul>

Text Style

All HTML test style are available.

You can use the mark tag to highlight text.

This line of text is meant to be treated as deleted text.

This line of text is meant to be treated as no longer accurate.

This line of text is meant to be treated as an addition to the document.

This line of text will render as underlined

This line of text is meant to be treated as fine print.

This line rendered as bold text.

This line rendered as italicized text.

<p>You can use the mark tag to <mark>highlight</mark> text.</p>

<p><del>This line of text is meant to be treated as deleted text.</del></p>

<p><s>This line of text is meant to be treated as no longer accurate.</s></p>

<p><ins>This line of text is meant to be treated as an addition to the document.</ins></p>

<p><u>This line of text will render as underlined</u></p>

<p><small>This line of text is meant to be treated as fine print.</small></p>

<p><strong>This line rendered as bold text.</strong></p>

<p><em>This line rendered as italicized text.</em></p>