Basic HTML Tutorial

  While making this help page, I never realized how many people needed a basic HTML tutorial a little more than they need enhancements. So I would begin teaching the very basics that would-be web-page authors need to know. These are the fundamentals and are highly important. Design and layout will come after these.


  1. Begin with the Title Tags
  2. <head><title>Sky Senshi @ The Racetrack</title></head>

    The Title Tags will indicate what the title of your page is. When somebody bookmarks your page, the name of your page will be the name of the bookmark, instead of your URL appearing on the title bar of the browser.


  3. The Body Tag
  4. <body text="white" link="blue" vlink="yellow" bgcolor="black" background="usagi.jpg">
    Place your contents here.
    </body>

    The Body Tag contains the overall look of your page. Whatever comes after the body tag will be the contents of your page.

    Where:
    text is the default color of all your fonts unless changed within the body
    link is the default color of the links in your page
    vlink is the default color of all the links that you already have visited before
    bgcolor is the color of your background

    you may or may not choose to use this tag if you already have a background graphic to use

    background is your background graphic


  5. Alignment Tags
  6. <center>Usagi</center>
    <div align="right">Usagi</div>

    center is, of course, for centering
    div align is for aligning your text whether you want it to be on the right, or left or justify


  7. Font Style Tags
  8. <font face="Helvetica, Arial" size=3 color=red>Ohayo!</font> <font face="Helvetica, Arial" size=2 color=yellow>Atashi Tsukino Usagi</font>

    These tags are used to modify that look of your fonts, if you want font changes within the contents of your page, where:

    face is the type of font you want to use
    You can put in several fonts separated by a comma so that the people whose computers don't have your particular font will see an alternative font.
    size is the size of the font you want to use
    color is the color of the particular font you selected.


  9. Image Tag
  10. <img src="usagi.jpg" height=200 width=200 alt="Usagi in a Nice Princess Dress">

    This is the most frequent asked-about tag. This is how you put an image into your page, where:

    img src is the image you want to put in your page (make sure you upload the image also or it would appear broken)
    height & width are the sizes of your image
    You can find out the size of your image by viewing it on your browser's title bar or through viewing the image size menu of your photo editor.
    alt is a label for your image so that people will know what kind of image you are loading
    border=0 this tag is optional and used if the picture has a link
    The border tag when set to "0" will not put in an ugly borders around your linked picture.


  11. Link Tags
  12. <a href="home.html">Return Home</a>

    <a href="home.html" target="_top"><img src="index.gif" height=30 width=88 border=0></a>

    <"home.html" target="new">Home</a>

    This is the tag for putting links, where:

    a href is where the link should take you to
    It could be an html file or a picture
    target="_top" will take you out of a framed page so that you can view the new page in its entirety
    target="new" will open a new browser with the link's destination on it


  13. Other tags

  14. Ten'ou Haruka is SailorUranus<br>
    Kaiou Michiru is SailorNeptune<p>

    Other Characters &nbsp;&nbsp;The SailorStarLights

    br is the tag for placing one line down to make another line
    p is used to put a space between one line and another
    &nbsp; is to put a bigger space between one word and another, depending on how far you want to put a space between them. Spaces created by the space bar on your keyboard will only generate one space (no matter how many times you press the space bar), whereas this tag, if used repeatedly will generate more spaces.


[ Main Page || The Help Office || GeoCities || GeoCities Tokyo || View Gbook ]