HTML Guide
If you know much about the Internet, you know a little about HTML (HyperText Markup Language). This allows you to do many things that you can't do with BBCode, the simplified cousin of HTML that you use on boards like this one. If the Admin has it enabled, you can use certain HTML tags. It just so happens that JPT is one of the boards that you can use them. These are the tags that you can currently use (listed alphabetically):
- <a href="http://www.jurassicparkterror.com/forum/viewtopic.php?p=11910#11910">a</a>
- <a href="http://www.jurassicparkterror.com/forum/viewtopic.php?p=32753#32753">b</a>
- <a href="http://www.jurassicparkterror.com/forum/viewtopic.php?p=32755#32755">i</a>
- <a href="http://www.jurassicparkterror.com/forum/viewtopic.php?p=32756#32756">img</a>
- <a href="http://www.jurassicparkterror.com/forum/viewtopic.php?p=32757#32757">marquee</a>
- <a href="http://www.jurassicparkterror.com/forum/viewtopic.php?p=32758#32758">p</a>
- <a href="http://www.jurassicparkterror.com/forum/viewtopic.php?p=32759#32759">pre</a>
- <a href="http://www.jurassicparkterror.com/forum/viewtopic.php?p=32760#32760">u</a>
- Code: Select all
[b][i]This is wrong![/b][/i]
<b><i>And so is this!</b></i>
but this is right:
- Code: Select all
[b][i]This is right![/i][/b]
<b><i>And so is this!</i></b>
Also, you should not open with one type of tag and close with another, so this is wrong:
- Code: Select all
[b]This is wrong!</b>
<b>And so is this![/b]
but this is right:
- Code: Select all
[b]This is right![/b]
<b>And so is this!</b>
Now that we're done with that, let's move on to the next difference: BBCode consists of simple, one word codes (depending on the forum), but HTML uses something called 'attributes' offering much greater control. An attribute is essentially some characteristic followed by a specific descriptor. For instance, with the img tag, in order to link to the image so it can be displayed, you would add the 'src' attribute, as follows:
- Code: Select all
<img src="http://www.yourwebsite.com/thenameofyourimage.jpg">
Here, 'src' is the characteristic, and 'http://www.yourwebsite.com/thenameofyourimage.jpg' is the descriptor.
Each HTML tag has its own set of attributes, and there is a handful of 'universal' attributes that can be used with any tag, for instance, the 'class' attribute. Also, if you start digging deeper into HTML, you will notice that some coders enclose their descriptors in quotation marks (""), while others leave them out. In the present, either method is fine, but once you start doing it one way, it's best not to go back and forth between the two ways. And if you use the quotes, you must be very careful to include both the beginning and ending mark, or your results could be quite bad. Leaving the second mark off of the 'href' attribute, for example, will result in the entire page from that point down being considered part of the URL! Therefore, this is bad:
- Code: Select all
<a href="http://www.yoursite.com/yourpage.html>Click here!</a>
but this is good:
- Code: Select all
<a>Click here!</a>
-OR-
<a href="http://www.yoursite.com/yourpage.html">Click here!</a>
One more thing: this guide is by no means a comprehensive guide to HTML use. If you're looking for more information, the first place you should start is probably a <a href="http://www.google.com/" target="_blank">Google</a> search.
Now, on to the tag descriptions!



