Blog Post Markup I'm always looking for

2020-07-18


<h1>This is a H1</h1>
<h2>This is a H2</h2>
<h3>This is a H3</h3>
<h4>This is a H4</h4>
<h5>This is a H5</h5>
<h6>This is a H6</h6>
<p>I am a paragraph of text with a hyperlink to google. 
<strong>I am in a strong tag </strong> 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.<strong> I am in a strong tag </strong></p>


<p><em>I am a an italic sentence</em>. I am a paragraph of text with a hyperlink to google. 
<strong>I am in a strong tag </strong> 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.<strong> I am in a strong tag </strong></p>


<p>This is some text followed by an ordered list</p>
<ol>
 	<li>ordered list item one</li>
 	<li>ordered list item two</li>
 	<li>ordered list item three</li>
 	<li>ordered list item four</li>
</ol>

<p>This is some text followed by an unordered list</p>
<ul>
 	<li>ordered list item one</li>
 	<li>ordered list item two</li>
 	<li>ordered list item three</li>
 	<li>ordered list item four</li>
</ul>

<p>After those two lists we have a blockquote</p>

<blockquote cite="https://www.huxley.net/bnw/four.html">
    <p>Words can be like X-rays, if you use them properly—they’ll go through anything. You read and you’re pierced.</p>
    <footer>—Aldous Huxley, <cite>Brave New World</cite></footer>
</blockquote>

<code>This is in a code tag</code>