HTML Markup Reference

Markup tags

Main heading <h1>........Heading text.............</h1>
Section heading <h2>.................................</h2>
Subsection heading<h3>.................................</h3>
Paragraph heading <h4>.................................</h4>
etc.

New paragraph <p/>
New Line break <br/>

Note: HTML ignores extra spaces and separate lines in marked up content.
You need to use <br/> or <p/> to split your content up into separate lines and paragraphs.

Bold <b>.........bold text.................</b>
Italic <i>.........italic text...............</i>

Hyperlink <a href="....URL...">....link text....</a>
Image <img src="...URL..."
      alt="caption for vision impaired" />

Note: Images and other files should not be stored within your FolderCMS content folder as they won't be publicly accessible from a user's web browser.
Instead, a good approach is to create a separate /img/ folder for images within your website's root folder, and reference images as src="/img/filename.jpg".

Special characters

Non-breaking space &nbsp;
< &lt;
> &gt;
& &amp;
© &copy;

Basic HTML reference sheet compiled by General Development. Redistribute or modify freely.