Okay, there are lots of little things you can do to change the look of your entries.
Want to emphasize what you're saying with some italics? Maybe you want to make
a word boldfaced (like most of my lies). Maybe you're just really anal and want to
make your list look like a list... I hope that I'll be able to help you out by having some
of the HTML codes needed defined here. Let me know if there's something you wanna know...
NOTE: It seems that my version of Netscape is unwilling to display the 'less than'
or the 'greater than' symbols... ):^(
So, if you are seeing a bunch of question marks, the format
of the HTML commands is: 'less than symbol', tag, 'greater than symbol'.
Your Favorite Commands
Basic Rules
Font Stuff
Linking Other Pages and Stuff
Lists
I think that the things you'd like to do most would be to put in a Carriage Return in a specific place and/or put a space between two paragraphs. This is an amazingly simple task.
To start/continue typing on the next line, add in a '<br>' at the end of the previous line.
So, if you type in:
This is the first line.<br>And this is the second.This is the first line.
And this is the second.
To start a new paragraph, lead it off with a '<p>'.
So, you would type in:
...I'm finishing the previous paragraph.
<p>And starting a new one....I'm finishing the previous paragraph.And starting a new one.
HTML is basically a computer language, so, you can now consider yourself an apprentice computer programmer by using these codes in your entries. =^) The basic rule is that for each tag (the HTML code), there is a starting tag, and a matching ending tag. The ending tag is just like the starting one, but with the addition of a '/'. So, if you were going to italicize a word, you would put a "<i>" before the word, then a "</i>" after it. Some of the codes don't require a closing tag. If you start a new paragraph (<p>), the computer can pretty much surmise that the old one ended.
If you put in a tag that the computer doesn't understand, say, <blah>, the tag will be ignored. And, if you put in a tag that uses quotation marks ("), but forget to use the closing quotes, a good bit of your message will disappear... So, be careful. I give you great power, you must use it only for good!
If you want to use multiple tags, you need to close each in the opposite order from which you declared it. So, you would want to do: <i><b>(bold italics)</b></i>, and not, <i><b>(bold italics)</i></b> which may or may not work.
Let the fun begin! You can do all sorts of things...
<i>Poopie!</i> results in: Poopie!<b>Grrr!!</b> results in: Grrr!!What a <u>pain!</u> results in: What a pain!Big <font color="red">Red</font> results in: Big RedI want a <font size="+2">Big</font> word. results in: I want a Big word.<blink>Annoy me!</blink> results in:
This is pretty easy to do. You add in a tag, an 'anchor', that has the address of the page/website in it before the word(s) that will make up the link, and then the closing of the 'anchor'.
Here's the syntax:
<a href="http://www.your_web_page_here">Go Here</a> results in: Go Here
You can also make a link that starts an e-mail message. Instead of 'href="http://www.yaddayaddayadda"', simply put in 'href="mailto:your_name@your.address.com"'
Like this:
E-mail <a href="mailto:eric@jeneric.ws">Me</a> will give you: E-mail
Me
And finally...
|
Entering:
| Results in:
|
|
You can use different types of counters, just change the "x" in type="x" to: "1" for numeric (1, 2, 3, ...), "A" for capital letters (A, B, C, ...) "a" for lower-case letters (a, b, c, ...) "I" for capital Roman numerals (I, II, III, IV, ...) or "i" for lower-case Roman numerals (i, ii, iii, iv, ...) | |
|
Entering:
| Results in:
|
That's pretty much it. There are a few special characters you can use too, but, for the sake of this environment, I'll only list ä (ä) and ü (ü).
If you have questions, or troubles, let me know. Have fun!