Sarah's Neopet Help
HTML Help

Home

Graphics
Neopet News
HTML Help
More HTML Help
Pet Photo Gallery
PetPet Photo Gallery
How To Master The BattleDome
How To Get Rich
Neopet Helpers
Link To Us

This is a 2-column page.

Enter subhead content here

. What is a tag?
Tags are an element; they mark the beginning and the end so that the browser knows how to display your page. Elements include text manipulation like bold, underline and itallic and making tables as well as a whole range of other things.

To begin a tag you would type something like: <tag> and to end it you would type the same tag again but with a slash: </tag>. Tags that have optional attributes are started and ended like this: <tag align=left> </tag> you dont have to include the attribute in the closing tag.


  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>

Enter supporting content here