HTML
Tags
You may include HTML tags in your entries to certain fields. Not all tags are permitted, however. To help keep the Web pages created with Critical Tools readable, navigable, and visually consistent, your use of HTML is limited to six basic tags:
<B>Bold Text</B>
<I>Italicized Text </I>
<U> Underlined Text </U>
Special Characters
Certain characters--such as the brackets (<, >) and the ampersand (&)--have a special meaning within the HTML scripting used to create Web pages. Other characters--such as diacritical marks, many of which are common in foreign words and names--are not available on standard keyboards. Curly quotation marks (as opposed to " and '), which you may inadvertently copy from another document as an entry for a field, are notorious for showing up on the resulting Web page erroneously, or not at all. To include "special characters" in those Web pages created by Critical Tools, you'll need to enter them long-hand, as it were, with what are called entity references.
An entity reference is a string of characters beginning with an ampersand (&), followed by the special character's name in abbreviated form, and ending with a semicolon (;). Entity references are case-sensitive, which makes sense if you think about it; you want to be able to distinguish between an Ä (specified by Ä) and an ä (ä).
Below is a table of those special characters that may be most useful. To use a special character on a Web page create by Critical Tools, follow these steps:
If the character in any of the first cells (under "Char") does not match the corresponding description, or does not appear at all, your browser does not support that entity reference. (The one exception is the nonbreaking space, which shows up as an invisible character.) You may want to consider updating your browser to a more recent version.
| Char | Description | Entity Ref |
|---|---|---|
| < | Less than | < |
| > | Greater than | > |
| & | Ampersand | & |
| Nonbreaking space | | |
| ¡ | Inverted exclamation | ¡ |
| ¿ | Inverted question mark | ¿ |
| · | Middle dot | · |
| « | Left angle quote | « |
| » | Right angle quote | » |
| ¶ | Paragraph sign | ¶ |
| § | Section sign | § |
| © | Copyright | © |
| ® | Registered trademark | ® |
| ¨ | Umlaut | ¨ |
| ¯ | Macron accent | ¯ |
| ´ | Acute accent | ´ |
| ¸ | Cedilla | ¸ |
| | Soft hyphen | ­ |
| À | Capital A, grave accent | À |
| à | Small a, grave accent | à |
| Á | Capital A, acute accent | Á |
| á | Small a, acute accent | á |
| Â | Capital A, circumflex accent | Â |
| â | Small a, circumflex accent | â |
| Ã | Capital A, tilde | Ã |
| ã | Small a, tilde | ã |
| Ä | Capital A, dieresis or umlaut mark | Ä |
| ä | Small a, dieresis or umlaut mark | ä |
| Å | Capital A, ring | Å |
| å | Small a, ring | å |
| Æ | Capital AE dipthong (ligature) | Æ |
| æ | Small ae dipthong (ligature) | æ |
| Ç | Capital C, cedilla | Ç |
| ç | Small c, cedilla | ç |
| È | Capital E, grave accent | È |
| è | Small e, grave accent | è |
| É | Capital E, acute accent | É |
| é | Small e, acute accent | é |
| Ê | Capital E, circumflex accent | Ê |
| ê | Small e, circumflex accent | ê |
| Ë | Capital E, dieresis or umlaut mark | Ë |
| ë | Small e, dieresis or umlaut mark | ë |
| Ì | Capital I, grave accent | Ì |
| ì | Small i, grave accent | ì |
| Í | Capital I, acute accent | Í |
| í | Small i, acute accent | í |
| Î | Capital I, circumflex accent | Î |
| î | Small i, circumflex accent | î |
| Ï | Capital I, dieresis or umlaut mark | Ï |
| ï | Small i, dieresis or umlaut mark | ï |
| µ | Micro sign | µ |
| Ñ | Capital N, tilde | Ñ |
| ñ | Small n, tilde | ñ |
| Ò | Capital O, grave accent | Ò |
| ò | Small o, grave accent | ò |
| Ó | Capital O, acute accent | Ó |
| ó | Small o, acute accent | ó |
| Ô | Capital O, circumflex accent | Ô |
| ô | Small o, circumflex accent | ô |
| Õ | Capital O, tilde | Õ |
| õ | Small o, tilde | õ |
| Ö | Capital O, dieresis or umlaut mark | Ö |
| ö | Small o, dieresis or umlaut mark | ö |
| Ø | Capital O, slash | Ø |
| ø | Small o, slash | ø |
| ß | Small sharp s, German (sz ligature) | ß |
| Ù | Capital U, grave accent | Ù |
| ù | Small u, grave accent | ù |
| Ú | Capital U, acute accent | Ú |
| ú | Small u, acute accent | ú |
| Û | Capital U, circumflex accent | Û |
| û | Small u, circumflex accent | û |
| Ü | Capital U, dieresis or umlaut mark | Ü |
| ü | Small u, dieresis or umlaut mark | ü |
| ÿ | Small y, dieresis or umlaut mark | ÿ |
| ÷ | Division sign | ÷ |
| ° | Degree sign | ° |
| ± | Plus or minus | ± |
| ¤ | General currency sign | ¤ |
| ¢ | Cent sign | ¢ |
| £ | Pound sterling | £ |
| ¥ | Yen sign | ¥ |
Thanks to the creators of http://www.natura l-innovations.com/boo/doc-charset.html, from which this table was culled.
Permitted HTML Tags in Detail
The <A HREF> Anchor Tag
To create a link to another Web page, use the <A HREF> anchor tag. Here's the standard format:
<A HREF="URL">Word or Phrase You Want Underlined as a Link</A>
where URL is the full (external, not relative) site address of the page you wish to link to, starting with "http://" (e.g., the URL for the Critical Tools Home Page is http://www.cwrl.utexas.edu/~criticaltools/index.html). So you could create a link to the Critical Tools Home Page by typing:
<A HREF="http://www.cwrl.utexas.edu/~criticaltools/index.html">Critical Tools Home Page</A>
in which case, the link would look like this:
Critical Tools Home Page
Or if, instead, you used the <A HREF> anchor tag in a descriptive sentence like this:
Click <A HREF="http://www.cwrl.utexas.edu/~criticaltools/index.html">here</A>to link to the Critical Tools Home Page.
it would show up on the browser like this
Click here to link to the Critical Tools Home Page.
Note that the word "here" becomes the underlined link because it is the only text between the <A HREF> and </A> tags.
You will find that Critical Tools pages often use a URL itself as a link. The HTML for such a link would look something like this:
Link to the Critical Tools Home Page at <A HREF="http://www.cwrl.utexas.edu/~criticaltools/index.html">http://www.cwrl.u texas.edu/~criticaltools/index.html</A>.
This format allows whoever reads your page or entry to get a sense of where
the link will go, to
write down the URL for future reference, or to copy-and-paste the URL
elsewhere.
The <B>, <I>, and <U> Style Tags
The use of <B>, <I>, and <U> tags to style text is very straightforward. Simply insert a <B> before and a </B> after any text you wish to embolden, an <I> before and a </I> after any text you wish to italicize, or a <U> before and a </U> after any text you wish to underline.
So if you wanted to post a description which would look like this:
This page includes dozens of great links regarding Mary Shelley's novel Frankenstein!
you would type it out, including HTML Style Tags, like this:
This page includes <B>dozens of great links</B> regarding Mary Shelley's novel <I>Frankenstein</I>!
Note that the closing </I> tag goes before the exclamation point, so that only the novel's title is italicized. If you preferred to underline your book title, you would substitute <U> and </U> tags for the <I> and </I> tags like this:
This page includes <B>dozens of great links</B> regarding Mary Shelley's novel <U>Frankenstein</U>!
and the resulting post would look like this:
This page includes dozens of great links regarding Mary Shelley's novel Frankenstein!
Because most browsers identify links by underlining them, you
may wish to avoid confusion by limiting your use of the underline tag.
The <BR> and <P> Break Tags
The HTML line break and paragraph break tags are <BR> and <P>, respectively. Unlike <A HREF>, <B>, <I>, and <U>, each of which requires a corresponding closing tag, the <BR> and <P> break tags may be used alone, without closing tags.
The <BR> tag executes a line break in the same way your computer's RETURN key does. The <P> tags has a similar effect, but inserts a blank line as well. Every <BR> tag executes a carriage return, but multiple consecutive <P> tags do not have a cumulative effect. A sequence of five <P> tags will insert only a single blank line, just as a single <P> tag would. So if you typed, say, a message forum response like this:
Don't mind<P>me. I'm just <BR><BR>playing around<BR>with some HTML<P><P><P>tags.
it would show up, after you'd posted your response and reloaded the page, like this:
Don't mindme. I'm just
playing around
with some HTMLtags.
Using break tags, you could even enter a poem--a Sapphic fragment, say--on a single line. The <BR> tags signal line breaks, while <P> tags divide what will show up as stanzas:
Dream, on your one dark wing,<BR>come circling<P>whenever sleep<BR>descends on me<P>and by your power covert keep<BR>the memory
becomes
Dream, on your one dark wing,
come circlingwhenever sleep
descends on meand by your power covert keep
the memory.