HTML Cheat Sheet:

Here's a handy HTML cheat sheet. You can copy and paste these lines to add different elements to your webpage.


<h1>This is a Heading 1</h1>

<h2>This is a Heading 2</h2>

<strong>This is Bold text</strong>

<p>This is a Paragraph</p>

<a href="http://address.com/where-you-want-to-go.html">This is a Link</a>

<em>This is Italic text</em>

<img src="your-image.jpg" />

Here's how to make a list:

<ul>
<li>First thing</li>
<li>Second thing</li>
<li>Third thing</li>
</ul>

To learn more HTML/CSS, check out these tutorials!