A touch of HTML
RapidWeb supports HTML within its editing space. However, we would recommend its sparing use within RapidWeb as it will add complexity to your page and make maintaining your pages more difficult and add more steps. These commands allow formatting that is not easily achieved with the current version of RapidWeb. They are in no way meant to be complete. For additional HTML commands refer to an HTML guide.
HTML Mark-Up Language
You can insert HTML in the edit box if you would like an effect that is not supported in this markup language.
Advanced
- < and > are themselves
- The & characters will not work
- Start each line of HTML in the edit box with a bar ( | )
To create Reference Links to pages on other sites
Sometimes when you create a reference link to another site, you do not want your visitor to leave your site. To open a new window in your visitors browser instead of using the current window is known as spawning a window.
- If you want to "spawn" a new window to show the linked page as opposed to leaving your site to view the linked page you must use html as follows (you may copy this code and paste into your edit window):
- It will appear as follows:
Mike's Ezine
To add an Image to your page:

Advanced
- To put images into the page in a position other than flush left requires the use of HTML.
- The HTML command for right align with text flow as in this example is:
- |<img src=http://www.yourdomain.com/yourimage.jpg align=right>
- This HTML command must be prefaced with the bar ( | ) character
To Create Tables
Advanced
- This is a manual process using the HTML to create a table. This process uses the HTML tags <TABLE>, <TR>, <TD>. Note that each HTML command must be prefaced with the bar ( | ). Here is an example. If you enter this with each line prefaced with the bar ( | ):
- |<TABLE BORDER=1>
- |<TR>
- |<TH> Head A </TH> <TH> Head B </TH>
- |</TR><TR>
- |<TD> Cell A2 </TD> <TD> Cell B2 </TD>
- |</TR><TR>
- |<TD> Cell A3 </TD> <TD> Cell B3 </TD>
- |</TR>
- |</TABLE>
- It is displayed as a table like this:
| Head A | Head B |
|---|
| Cell A2 | Cell B2 |
| Cell A3 | Cell B3 |
http://www.rapidweb.info/upload/images/test.pdf