When posting to a static page (this does not apply to the blog), there are two sections that content can go in, “maincontent” and “sidecontent”. Each of these is represented by a container, also called a div (<div>). Be sure your content is in between either the “maincontent” div or the “sidecontent div”, like so:

<div id=”maincontent”>
Main content goes here. It can include pictures, lists, quotes, etc.
</div>

<div class=”sidecontent”>
Side content goes here. It can also include pictures, lists, quotes, etc.
</div>

Headers:

<h2>This is an h2</h2>

<h3>This is an h3</h3>

<h4>This is an h4</h4>

Blockquotes:

<blockquote>There is no way around it. You absolutely must have fun. Without fun, there is no enthusiasm. Without enthusiasm, there is no energy. Without energy, there are only shades of gray.</blockquote>

Text styling:

<strong>Strong text</strong>

<em>Emphasized text</em>

Captions:

<span class=”caption”>This is a caption</span>

Unordered list:

<ul>

</ul>

Ordered list:

<ol>

  1. <li>Step One</li>
  2. <li>Step Two</li>
  3. <li>Step Three</li>

</ol>

Creating an e-mail link:

Creating an email link is similar to creating a regular hypertext link.

<a href=”mailto:email@address.com”>Email Us!</a>