HTML Cheat Sheet

HYPERLINKS:

Regular URL: <a href="enter URL here(must include http://)">text you want to link</a>

Regular URL Open in new tab: <a href="enter URL here(must include http://)" target="_blank">text you want to link</a>

Link to email: <a href="mailto:email address">text you want to link</a>

STYLING:

BOLD: <b>text</b>

UNDERLINE: <u>text</u>

ITALICS: <i>text</i>

Color: <font color="#hexcode or name of color">text</font>

NUMBERED LISTS:

<ol>

<li>text for each line item</li> **Don’t include breaks – all lines should roll together**

</ol>

BULLETTED LISTS:

<ul>

<li>text for each line item</li> **Don’t include breaks – all lines should roll together**

</ul>

INSERTING AN IMAGE

<div style="text-align: left"><img src="IMAGE URL" /></div>

NOTE: change "left" to "right" or "center" based on where you want the image. 

INSERTING A TABLE:

<table border="0" width="100%"><tr><td>NAME1</td><td>NAME2</td></tr><tr><td>TITLE1</td><td>TITLE2</td></tr><tr><td>PHONE#1</td><td>PHONE#2</td></tr></tr><tr><td>EMAIL1</td><td>EMAIL2</td></tr></table>

LINKING A FORM TO A MENU:

index.cfm?do=frm.enterForm&formID=1001&cb=1056 (where ‘1001’ is the form ID - found by hovering over the form title on the find and edit screen. ‘1056’ is the menu ID)

 

Was this article helpful?
0 out of 0 found this helpful