This guide contains the different HTML elements you can use inside of your tutorial. Copy the code in the black box for the element you want to use and paste it into your tutorial.
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h5>Heading 6</h5>
This is a paragraph with a link and some bolded and emphasized text.
<p> This is a paragraph <a href="#">with a link</a> and some <strong> href="#">bolded </strong> and <em> href="#">emphasized </em> text. </p>
<ol> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol>
<ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul>
<ol class="steps"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul>
<img width="400" alt="Description..." src="http://example.com/cat.jpg" />
<pre class="code"> this is a line of code this is another line </pre>
<hr />