| HTML code |
Result |
Line break
Text on a line.<br />
Text on the next line. |
Text on a line.
Text on the next line.
(This is like hitting the return key.) |
Paragraph
<p>First paraggarph.</p>
<p>Second paragraph.</p>
| First pargraph.
Second paragarph.
(The paragraph tag introduces a blank line before and after the text.) |
Bold
Make text<strong>bold</strong> for emphasis. |
Make text bold for emphasis. |
Bullet or unordered list
Here are your choices:
<ul>
<li>Choice A</li>
<li>Choice B</li>
<li>Choice C</li>
</ul> |
Here are your choices:
- Choice A
- Choice B
- Choice C
|
Ordered or numbered list
Follow these steps:
<ol>
<li>Step 1</li>
<li>Step 2</li>
<li>Step 3</li>
</ol> |
Follow these steps:
- Step 1
- Step 2
- Step 3
|
Link to a Blink page
Use the article chooser in the Content Manager tool to access the code for the link. Copy and paste that code where you want the link to appear.
Find information on <a href="/Blink/External/Topics/Policy/0,1162,12422,00.html">Administrative Stipends</a>. |
Find information on Administrative Stipends. |
Link to a Web page outside of Blink (TritonLink pages are now considered outside of Blink since they are in a new content management system)
See the Office of the President's <a href="http://ucop.edu/">Web site</a>. |
See the Office of the President's Web site. |
Link to an e-mail address
Contact <a href="mailto:xyz@ucsd.edu">XYZ Department</a> for assistance. |
Contact XYZ Department for assistance. |
Tables
HTML tables are complicated. Contact Allisa Becker for assistance or follow the example on the Advanced HTML page. |
Images
Contact Matt Cliff for assistance with images. You can also see an example of a page with an image. |