Before I begin this segment, I should make it clear that this IS NOT a complete HTML tutorial by any chance. If you want to really learn HTML, you can start with the University of Michigan WWW FAQ List. This page lists just a few commands that you can use when writing your messages in COW.All of the code that I talk about below can be inserted directly into any text box in COW, including the change profile, start new conversation, and reply sections (for participants), and the conference and topic messages (for fair witnesses). However, in order to make it work you must remember to check the 'Interpret this as HTML' box. Also, it is recommended that you use the 'Preview Message' button whenever using any HTML commands, in case you make a mistake with the code.
- How to create a link to another WWW page
- How to underline text
- How to make text bold
- How to italicize text
- How to create a line break
- How to make text of a different color
How to create a link to another WWW page
If the web page you want to link to has the following address:
http://www-personal.engin.umich.edu/~sabileah/The code you would use would look like this as entered into the text box...
Hey everybody in MyClass 101, check out this informative and fun web site I found. It's called Shahaf's New Home Page, and to go there click <A HREF="http://www-personal.engin.umich.edu/~sabileah/">here</A>.This is how it would look on the posted message:
Hey everybody in MyClass 101, check out this informative and fun web site I found. It's called Shahaf's New Home Page, and to go there click here.What you can change about this
- The address of the WWW page. The part within the quotes
- The word 'here'. You can change that word to pretty much anything.
Don't forget to
- place quotes around the address
- end it with a </A>
If you had the following sentence to type:
The book I read was Cat's Cradle by Kurt Vonnegut Jr.and you wanted to underline the name of the book. This is how you would type it into the text box like this...
The book I read was <U>Cat's Cradle</U> by Kurt Vonnegut Jr.This is how it would look in the posted message:
The book I read was Cat's Cradle by Kurt Vonnegut Jr.Notes
- It doesn't matter if you use an upper case U or lower case u.
- You must use the forward slash (/) in the second tag.
If you wanted to write the following line:
I tried to do problem number 5, but I'm having a lot of trouble with it.and you wanted to put emphasis on the 'a lot' part, you would do the following...
I tried to do problem number 5, but I'm having <B>a lot</B> of trouble with it.This is what it would look like in the posted message:
I tried to do problem number 5, but I'm having a lot of trouble with it.
Similar idea. If you wanted to write:
The article I read is called "The Force is Still With Us," and was published in Time Magazineand you wanted to italicize the name of the magazine, you would do this...
The article I read is called "The Force is Still With Us," and was published in <I>Time</I> MagazineThis sentence posted in a message would look like this:
The article I read is called "The Force is Still With Us," and was published in Time Magazine
A line break is like a carriage return, or in other words like pressing enter on the keyboard. It makes the next word start one line lower. This is actually a pretty important command. Why is that? Reason is that as soon as you check the 'Interpret this as HTML' box, all superfluous spaces or enters are ignored by COW. This means that the following two lines would look the same:
There are a bunch of spaces in this line.
There are a bunch of spaces in this line.They would both look like this:
There are a bunch of spaces in this line.To force a line to start lower you can do this:
Paragraph 1 of my message<BR>Paragraph 2<BR>Paragraph 3The result would look like this:
Paragraph 1 of my message
Paragraph 2
Paragraph 3Note: You can use multiple <BR>s to create extra spaces between lines.
How to make text of a different color
If you wanted to write only a part of a sentence in red, you would do the following...
Only the word <FONT COLOR="RED">red</FONT> is written in <FONT COLOR="RED">red</FONT>.The result would be this
Only the word red is written in red.Notes:
- You can make any word into a different color, not just the name of the color
- You can do the same with different colors, including BLACK, GREEN, BLUE, etc...by exchanging the preferred color in the FONT COLOR=" " command.
Next Section