Typography sets default styles for headings, paragraphs, semantic text, blockquote and lists elements.
<h1>H1 Heading</h1>
<span class="h1">H1 Heading</span>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent risus leo, dictum in vehicula sit amet, feugiat tempus tellus. Duis quis sodales risus. Etiam euismod ornare consequat.
Climb leg rub face on everything give attitude nap all day for under the bed. Chase mice attack feet but rub face on everything hopped up on goofballs.
<p>Lorem ipsum dolor sit amet, ...</p>
<p>...</p>
abbr
strong
b
cite
Hello World!
code
del
em
i
ins
kbd
mark
ruby
s
samp
sub
sup
time
u
var
The advance of technology is based on making it fit in so that you don't really even notice it, so it's part of everyday life.
- Bill Gates
<blockquote>
<p>The advance of technology is based on making it fit in so that you don't really even notice it, so it's part of everyday life. </p>
<cite>- Bill Gates</cite>
</blockquote>
<!-- unordered list -->
<ul>
<li>list item 1</li>
<li>list item 2
<ul>
<li>list item 2.1</li>
<li>list item 2.2</li>
<li>list item 2.3</li>
</ul>
</li>
<li>list item 3</li>
</ul>
<!-- description list -->
<dl>
<dt>description list term</dt>
<dd>description list description</dd>
</dl>