Typography

Typography contains default styles of headings semantic text list etc.

Headings#

H1 Heading 40px

H2 Heading 32px

H3 Heading 28px

H4 Heading 24px

H5 Heading 20px
H6 Heading 16px
<h1>H1 Heading</h1>
<h1 class="h1">H1 Heading</h1>
<h2 class="h2">H2 Heading</h2>
<span class="h2">H2 Heading</span>
<div class="h3">H3 Heading</div>

Parapraphs#

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>

Quotes#

Your time is limited, so don’t waste it living someone else’s life. Don’t be trapped by dogma – which is living with the results of other people’s thinking.

- Steve Jobs
<blockquote>
  <p>Your time is limited, so don’t waste it living someone else’s life. Don’t be trapped by dogma – which is living with the results of other people’s thinking.</p>
  <cite>- Steve Jobs</cite>
</blockquote>

Address#

Rotala, Inc.
Green Office
1-1 Alpha, Beta, Somewhere
+00-11-2222-3333 (Main)
first.last@example.com
<address>
  <div>Green Office</div><br />
  <div>1-1 Alpha, Beta, Somewhere</div><br />
</address>

Semantic elements#

I18Nabbr
Boldstrongb
Citationcite
Hello World!code
Deleteddel
Emphasisem
Italici
Insertedins
Ctrl + Skbd
Highlightedmark
kanjiruby
Strikethroughs
Samplesamp
Text Subscriptedsub
Text Superscriptedsup
time
Underlineu
x = y + 2var

Code#

<!-- code snippets -->
F12
<p>This is an example</p>
<a>This is an example</a>
<span>This is an example</span>
<b>This is an example</b>
    

Lists#

  • List Item 1
  • List Item 2
    • List Sub-Item 1
    • List Sub-Item 2
  • List Item 3
  • List Item 4
  • List Item 5
  1. List Item 1
  2. List Item 2
    1. List Sub-Item 1
      1. List Sub-Item 1
  3. List Item 3
  4. List Item 4
  5. List Item 5
Item 1
Description for Item 1
Item 2
Description for Item 2
Item 3
Description for Item 3
<!-- Unordered list -->
<ul>
  <li>List Item 1</li>
  <li>List Item 2</li>
</ul>

<!-- Ordered List -->
<ol>
  <li>List Item 1
    <ol>
      <li>List Sub-Item 1</li>
      <ol>
        <li>List Sub-Item 1</li>
      </ol>
    </ol>
  </li>
</ol>

<!-- Description List -->
<dl>
  <dt>Item 1</dt>
  <dd>Description for Item 1</dd>
</dl>