Basic Text Manipulation
Bold, itallic, underline, superscript, subscript, paragraphing, starting a new line, changing size, changing colour, headings and aligning text.
<p> Starts a new paragraph
<b> Makes text bold
<i> Makes text itallic
<sup> Makes text appear in superscript
<sub> Makes text appear in subscript
<br> Starts a new line (just like pressing Enter or Return on your keyboard)
<center> Centers text or objects
<p align="left"> Aligns the entire paragraph element to the left (can replace with center or right)
<font color="orange"> Makes text blue
<font size="+2"> Enlarges text two sizes from the default browser setting. (Eg: if the browsers default was 10pt then your text would appear in size 14pt)
<h1> Creates a heading size one (one is the largest there's also two and three
<div align="right"> Divide, new section, good for aligning text without starting a new paragraph like in the example below.
Using the above tags you can do pretty much everything you want to do in your shops, guilds, petspages or webpages excluding some of the more advanced stuff like tables, adding links and adding images.
EXAMPLE
At seven the next morning the telephone rang.
Slowly I swam up from the bottom of a black sleep. I already had a telegram from Jay Cee stuck in my mirror, telling me not to bother to come into work but to rest for a day and get completely well, and how sorry she was about the bad crabmeat, so I couldnt imagine who would be calling.
- exerpt from The Bell Jar by Sylvia Plath
The HTML would look something like this:
<p>At seven the next morning the <i>telephone</i> rang.<br>
Slowly I swam up from the bottom of a <b>black</b> sleep. I already had a telegram from Jay Cee stuck in my <font color=green>mirror</font>, telling me not to bother to come into work but to rest for a day and get completely well, and how sorry she was about the bad <u>crabmeat</u>, so I couldnt imagine who would be calling. <div align=right>- exerpt from The Bell Jar by Sylvia Plath</div>