|
|
|
Web Author Resources > Web Best Practices
> Writing HTML
Writing HTML
In order to create or edit pages for the Libraries' web site, you must
have a basic understanding of HTML. Staff
Learning & Development offers courses and resources for learning
HTML. Course packet: HTML 101 [PDF]
Quick Reference
Frequently Used HTML
| Example HTML: |
What Users See: |
<em>Italics</em>
(NOT <i>Italics</i>) |
Italics |
<strong>Bold</strong>
(NOT <b>Bold</b>) |
Bold |
<ul>
<li>First item</li>
<li>Second item</li>
</ul> |
|
<ol>
<li>First item</li>
<li>Second item</li>
</ol> |
- First item
- Second item
|
Coding Special Symbols
Symbols like <, >, &, ©, ’ and " must be coded in HTML so that they will display correctly in various browsers.
| Example HTML: |
What Users See: |
| & |
& |
| > |
> |
| < |
< |
| © |
© |
| " |
" |
| ’ |
’ |
NOTE: The ampersand must be coded as & EVEN when it appears in the middle of a URL, as in the deep links into Research Port.
For a complete list of Special Characters, see the World Wide Web
Consortium's Character Entity References in HTML 4. |
HTML tips:
return to top
|