html cheatsheet
ยท Lorenzo Drumond
Headings
1<h1>Heading 1</h1>
2<h2>Heading 2</h2>
3<h3>Heading 3</h3>
4<h4>Heading 4</h4>
5<h5>Heading 5</h5>
6<h6>Heading 6</h6>
Paragraphs
1<p>This is a paragraph of text.</p>
Bold
1<p>This is a <b>bold</b> word.</p>
Italics
1<p>This is an <i>italic</i> word.</p>
Links
1This is a paragraph with a <a href="https://www.google.com">link</a>.
Images
1<img src="url/of/image.jpg" alt="Description of image">
Unordered lists
1<ul>
2 <li>Item 1</li>
3 <li>Item 2</li>
4 <li>Item 3</li>
5</ul>
Ordered lists
1<ol>
2 <li>Item 1</li>
3 <li>Item 2</li>
4 <li>Item 3</li>
5</ol>
Quotes
1<blockquote>
2 This is a quote.
3</blockquote>
Code
1<code>This is code</code>
References
#cheatsheet
#html
#programming