Saiyan Inferno
Home
F.A.Q
News
Information
Ages
Biographies
Dragonballs
Episode Guide - English
Episode Guide - Japanese
Fighting Outfits
Fusion
Power Levels
States
Summary
Techniques
Trainers
Transportation
Weapons
Images
Card Scans
Pictures
Wallpapers
Miscellaneous
About Me
Credits/Thanks
HTML Codes
Name Puns
T.V Schedules
Website Help
Fun Stuff
Online DBZ RPG
Polls
Quiz
Fandamonium
Fan Art
Fan Fiction
Awards
Awards I Won
Awards You Can Win
Links
Anime/DBZ Sites
Banner Links
Goods
Topsites/Webrings
Guestbook
Sign
View
Email
SSJGoku500














































































































































































































































































































































































































































Top

Can you stand the heat?
HTML Codes

This is my HTML page. I don't have every single thing but these are the basics. In the future I will update it with the codes on how to make image maps, frames, and some extra stuff on text and graphics.


WHAT YOUR PAGE SHOULD HAVE BEFORE YOU START


<HTML> <HEAD> <TITLE>(title of your webpage)</TITLE> </HEAD> <BODY> (everything you type goes here, EVERYTHING) </BODY> </HTML>

PLACING TEXT ON THE PAGE


New paragraph

<p>
Paragraph aligned on the right of the page <p align=right>
Paragraph aligned on the center of the page <p align=center>
Paragraph aligned on the left of the page <p align=left>
New Line<br>

FORMATING TEXT


Bolding Text

<b>Text</b>
Italicising Text <i>Text</i>
Underlining Text <u>Text</u>

SETTING A BASE FONT


Base font size

<basefont size="size">
Base font face <basefont face="font type">
Both at once <basefont size="size" face="font type">

ADDING COLOR


Changing Font Color

<font color="color">Text</font>
Setting the background color(do this in the body tag) <BODY bgcolor="color">

HEADINGS AND HORIZONTAL RULES


Horizontal Rule

<hr>
Heading 1 <h1>Text</h1>
Heading 2 <h2>Text</h2>

LINKING


External Link

<a href="url">Link Text</a>
Internal Link <a href="#url">Link Text</a>
Email <a href="mailto:emailaddress">Link Text</a>

IMAGES


Basic Images

<img src="url of image">
Image aligned with top of text <img src="url" align=top>
Image aligned with middle of text <img src="url" align=middle>
Image aligned with bottom of text <img src="url" align=bottom>
Image with alternative text <img src="url" alt="alternative text">

DISPLAYING LISTS


Numbered list

<ol>
<li>First Term</li>
<li>Second Term</li>
so on...
</ol>
Bulletted List
<ul>
<li>First Bullet</li>
<li>Second Bullet</li>
so on...
</ul>
Definition List
<dl>
<dt>First term
<dd>First Definition
<dt>Second term
<dd>Second Definition
So on...

CREATING A TABLE


Starting it

<TABLE>
Setting width & border & alignment <TABLE align="alignment" border="any #" width="width">
New Row <TR>
New Column <TD>
Closing a column </TD>
Closing a row </TR>
Closing the table </TABLE> </body> </html>