Show Menu
Cheatography

HTML for APIT Cheat Sheet (DRAFT) by

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Basics

Paragraph
<p>Some Text</p>
Some Text
Formats any text as a paragraph. Automa­tically adds a new line afterw­ards.
Bold
<p>Some <st­ron­g>BOLD</s­tro­ng> text</­p>
Some BOLD Text
Makes the wrapped text bold
Header 3
<h3>A Heading</h­3>
A Heading
Makes the wrapped text larger, bold and blue

Lists

List
<ul>
  <li>List Item 1</li>
</u­l>
List Item 1
Wraps around entire bullet list
List Item
<ul>
  <li>List Item 1</l­i>
  <li>List Item 2</l­i>
</ul>
List Item 1
List Item 2
Wraps around lines within the bullet list

Quotes

Blockquote
<bl­ock­quo­te>
 ­ A Quote
 ­ ­<sp­an>Joe Bloggs</span>
</b­loc­kqu­ote>
"A Quote"
- Joe Bloggs
Wraps around entire quote and author. Adds quote mark icons and other formatting
Span (when within blockq­uote)
<blockquote>
 ­ A Quote
 ­ <sp­an>Joe Bloggs</s­pan>
</b­loc­kqu­ote>
"A Quote"
- Joe Bloggs
Wraps around the author to separate it from the actual quote