| Bold Text
To make text bold, surround it with the <B> begin tag and the </B> end tag. |
| Italic Text
To make text italic, surround it with the <I> begin tag and the </I> end tag. |
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
| Lists
There are several ways to format a list: |
![]() |
Ordered (Numbered) List | Displayed in the browser as: |
<OL> <LI>Open the door. <LI>Walk out. </OL> |
|
![]() |
Unordered (Bulleted) List | Displayed in the browser as: |
<UL> <LI>Milk <LI>Bread </UL> |
|
![]() |
Definition List | Displayed in the browser as: |
<DL> <DT>The Library of Congress <DD>Although the U.S. Library of Congress is not truly a "National Library", it nonetheless serves many of the roles that a national library plays in other countries. <DT>The Digital Library Federation <DD>This consortium of government agencies, major research libraries, and non-profit organizations, is working to create an interoperable digital library. </DL> |
|
| Hypertext Linking To Another File
A link to another file or page. For example, to make a link to the Library of Congress Web server, you could create the following HTML fragment: There are many resources at the <A HREF="http://www.loc.gov/"> Library of Congress.</A>Which is displayed in the browser as: There are many resources at the Library of Congress. |
| Colored Background
You can specify a background color other than the default grey by using an attribute of the <BODY> tag that uses the hexadecimal equivalent of a color. For example: <BODY BGCOLOR="#FFFFFF"> The above example provides a white background. For other hexadecimal color values, see http://www.lynda.com/hexh.html. | |
| Centering
Centering should always be achieved by an attribute setting of a given tag. For example: To center a paragraph: <P
ALIGN="CENTER>Your paragraph here.</P> |
Listed here are a few of the special characters most widely understood by Web browsers. Many more special characters are defined within the HTML 3.0 specification, but are not yet widely supported by Web browsers.
| Entity | HTML | Rendered |
|---|---|---|
| Copyright | © | © |
| Ampersand | & | & |
| "Less Than" | < | < |
| "Greater Than" | > | > |
| Non-breaking Space | | [space] |