SiteApex Administration Help & Tutorials
Please use the topic links below to see a list of tutorials for that particular topic or module. Or you can use the search button to search for help on a specific topic.
Note: there are a few non-default modules listed here. Please contact sales if you are interested in any of these modules.
- Getting Started
- Page Editing
- Ad Manager
- Blog Module
- Bulletin Board (BBS)
- Calendar Manager
- File Manager
- Form Builder
- League Module
- Media & Resource Library
- News Letters
- News Manager
- Photo Album
- Staff List
- Shopping Cart
- Directories Module
- Indexed Articles
- Questionnaires
- Job Posting
- Mobile Devices
- Control Panel
- SMTP - Outgoing Mail
- Security & User Groups
- Templates
- Plugins
- SEO
- WCAG / Website Accessibility
Basic HTML Commands
This article lists some basic, commonly used html commands. If you are interested in learning more about html, we recommend checking out w3schools website.
Effect | Code | Description | Example |
Paragraphs | <p></p> | These tags are used around the beginning and end of a paragraph | <p>Paragraph 1</p> <p>Paragraph 2</p> |
Line Break | <br /> | This tag adds a line break | Text<br /> This text will start on a new line |
Bold | <strong></strong> | Bolds the text contained between the opening and closing strong tags | I would like <strong>this text</strong? bolded. |
Italicize | <em></em> | Italicizes the text contained between the opening and closing em tags | I would like <em>this text</em> italicized. |
Hyperlink | <a href="http://yourlinkaddress.com"></a> | Creates a hyperlink | I want <a href="http://cnn.com">this text to link to cnn.com</a> |
Headings | <h1></h1> <h2></h2> <h3></h3>... (up to h9) | Creates headings. h1 is a top level headings and h2 and higher are sub-headings. | <h1>This is my heading</h1> This text will start on a new line after a closing </h > tag |
Image | <img src="http://theaddressofyour imagehere.jpg" /> | Inserts and image onto your page | <img src="http://imagefilename.jpg" /> |