HTML Cheat Sheet
h1
<h1> Page Title </h1>
Only one <h1> should be used
h2
h3
h4
<h2,3,4...> tags to add sections </h2,3,4...>
What sections do you want to include?
Paragraphs
<p> tags to add paragpraphs </p>
Write about each section
Bold text
<b> emphasizes text </b>
Add Images
<img src="image.jpg" alt="A discription of the image" width="auto"
height="auto">
Hyperlinks
<a href="https://www.website.com" target="_blank">Visit this website
(in a new tab)!</a>
<a href="#someIdInMyHtmlCode">Visit this section of my page!</a>
ex. <a href="#intro">Read my Intro!</a>
<p id="intro"Hello there/p>
Lists
<ul> For unordered lists </ul>
<ol> For ordered/numbered lists </ol>
<li> For list elements <li>
ex.
<ul>
<li> List element 1 <li>
<li> List element 2 <li>
<li> List element 3 <li>
</ul>