Here are some basic codes that you can use when modifying your pages. Not all text boxes require or accept HTML; try using your menu bar before resorting to these codes.
- To create bolded text:
<b>your bolded text</b>
= your bolded text
- To create italicized text:
<i>your italicized text</i>
= your italicized text
- To create a clickable email address:
If there is a "Create Link" icon:
As a URL enter "mailto:youremailaddress@domain.com"
If there is no "Create Link" icon:
<a href="mailto:youremailaddress@domain.com">youremailaddress@domain.com</a>
= youremailaddress@domain.com
- To embed a link:
If there is no "Create Link" icon:
<a href="http://www.nih.gov/" target="">National Institutes of Health</a>
= National Institutes of Health
To open in a new tab:
<a href="http://www.nih.gov/" target="_tab">National Institutes of Health</a>
Back to FAQ