American Index

    - Alphabets
    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars


    Animals Index

    - American
    - Awareness
    - Backgrounds
    - Blinkies
    - Canadian
    - Graphics
    - Lines & Bars
    - Most Wanted


    Around the World

    - Africa
    - Antarctica
    - Asia
    - Backgrounds
    - Blinkies
    - Countries
    - Europe
    - Graphics
    - Lines & Bars
    - North America
    - Oceania
    - South America


    Awards Index

    - 1 Award
    - Site Fights


    Awareness Index

    - Aids
    - Animal Abuse
    - Autism
    - Backgrounds
    - Blinkies
    - Breast Cancer
    - Heart & Stroke
    - Lines & Bars
    - Other Causes
    - Peace
    - Ribbons


    Backgrounds Index

    - American
    - Awareness
    - Canadian
    - Glitter
    - Ribbons


    Betty Boop Index

    - Alphabets
    - American
    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars


    Canada Index

    - Alphabets
    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars
    - Tartans

    My Canada

    - Canada Eh
    - Kelowna Fire
    - My Canada
    - My Alberta
    - My Calgary
    - My Okotoks


    Color Index

    - Color Picker
    - Rollover Cube
    - Web Safe Colors
    - What Color Means


    Comics Index

    - American
    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars


    Favorite Links

    - Backgrounds
    - Banners & Labels
    - Blinkies
    - Buttons
    - Countdowns
    - Generators
    - Glitter
    - Graphics
    - html Help
    - Icons
    - Javascripts
    - Ribbon Makers
    - Templates
    - Triple Sets


    Fun Creations Index

    - Anyway Challenge
    - Aware Ribbons
    - Be Aware
    - Capers for Cancer
    - Chicken Dance
    - Chilis
    - I Love This Bar
    - In the Garden
    - Passionately Pink
    - Pepper Dance
    - Provincial Trivia
    - Wanted Posters
    - Zodiac Animals
    - Zodiac Calculator


    Graphics Index

    - American
    - Animals
    - Around the World
    - Awareness
    - Betty Boop
    - Blinkies
    - Canadian
    - Children
    - Comics
    - Men & Women
    - Special Days
    - Sports


    html Help

    - Introduction
    - Basic Tags
    - Using Tags
    - Adding Images
    - Adding Music
    - Resources


    Lines & Bars Index

    - American
    - Animals
    - Around the World
    - Awareness
    - Betty Boop
    - Canadian
    - Children
    - Comics
    - Glitter
    - Men & Women
    - Special Days
    - Sports


    Men & Women

    - Babes
    - Battle of the Sexes
    - Cowboys
    - Hunks
    - Men
    - Men & Women
    - Native
    - Playboy
    - Police & Fire
    - Women

    Children Index

    - American
    - Backgrounds
    - Blinkies
    - Canadian
    - Graphics
    - Lines


    Scripts Index

    - Marquees
    - Print Page


    Special Days Index

    - April Fools
    - Birthday
    - Canada Day
    - Christmas
    - Easter
    - Father's Day
    - Halloween
    - Independence Day
    - Mardi Gras
    - Mother's Day
    - New Years
    - St. Patricks
    - Thanksgiving
    - Valentines
    - Wedding


    Sports Index

    - Backgrounds
    - Blinkies
    - Graphics
    - Lines & Bars

 
 
Thank you for taking the time to Vote for my Site
Thanks for Voting for my Site. Jumpy :)

 

©Webcreations by Jumpy
2008 - 2022

Introduction to html

html stands for Hyper-Text-Markup-Language.

Read through John Gilson's Lessons. His site is the best I've found to help you understand and learn html.

html "tags" are written commands to a computer to perform certain functions. For basic documents you will need very few commands, for example:

  a line break
  aligning text
  starting and ending paragraphs
  justification
  font commands such as bold, underline, and font size

In the absence of word processing programs, your computer simply would not know what to do and your text would continue endlessly. So, we must give it the commands that will make your document appear in the format you want.

Basic html Tags

Unfortunately, now that we are just getting the "hang" of html, the W3C (World Wide Web Consortium) has started to deprecate (remove and/or replace) some of the html tags in favor of CSS (cascading style sheets). In addition every tag <> must be closed </>. This means that eventually browsers will not recognize some of the html tags.  However, it will be a very long time (if ever) before the deprecated tags are not recognized so at this time it is not a major concern.

To add to the confusion, some things are browser sensitive (usually because they were developed by another browser) so it is important to know what will work in your browser. For example, neat things like marquees, color codes for horizontal rules or table borders, and music may not work in all browsers.

<center> to center your text or images on the page. Deprecated. <p align="center"> is replacing <center>.)

<p align="left"> to align your text or images to the left. "right" is substituted to align to the right. "center" can also be indicated with this tag.

<p align="justify"> to full justify your text.

<br> to force a line break.

<p> to start a new paragraph.

<i> for italics.(Deprecated. <em> is replacing <i>.)

<b>to bold your text. (Deprecated. <strong> is replacing <b>.)

<u> to underline your text. (Deprecated) Underlining text or headings for emphasis should be avoided as most web surfers now recognize underlining as being a link. Use bold or italics instead.

<big> to increase the font size. To increase the size even more add another tag as in <big><big>. (Deprecated. Font size and weight are replacing <big>.)

<hr> to add a horizontal rule.


Tags are not case sensitive so either caps or small letters can be used. However, since all browsers do not react the same way, it is good practice to use small letters.

html does not recognize space. For instance, if you type in your html code: Hello.                                    My name is Jumpy, it will still show on the page like this: Hello. My name is Jumpy.

Using Tags

A tag is started by putting <> around it and closed by putting </> around it.

Several tags can be used together. It does not matter what order you put the tags in but, when closing, the first tag used is the last tag closed. For example, if we want to center the text, and underline it, we would use:

<center><u> Hello, my name is Jumpy. </u></center>
The text would look like this.

Hello, my name is Jumpy.

If we wanted to make the sentence bold and two times larger we would add.

<center><u><b><big><big>Hello, my name is Jumpy
</big></big></b></u></center>
The text would look like this.

Hello, my name is Jumpy.

Adding Images/Alignment

To add an image to your page and center it, the code is:

<center> <img src="image from your browser"> </center>
Your image will look like this.

To add two images side by side the code is:

<center> <img src="image from your browser"> <img src="image from your browser"> </center> Your images will look like this.

To align your image to the left (or right) the code is:

<p align="left" (or)"right"> <img src="image from your browser">
Your image will look like this.

Adding Music

The code for adding music to your page is:

<bgsound src="http://music from your browser.wav"></bgsound>

If you want the music to play over and over add:

<bgsound src="http://music from your browser.wav" loop=infinite></bgsound>

Note though that playing music is risky. Firstly, although you might like the music - not everyone has your taste and may "click off" because of it. Secondly, playing the same song over and over can get annoying. Your viewer does have the option of turning off his sound but you again run the risk of them just leaving your page because of it.

Resources

Text Book - html for the World Wide Web


Please take the time to sign my guest book. I would love to hear from you.

Sign my Guest Book!
Read my Guest Book!
 
 
This Site is Hosted by Host Papa. Switch NOW to Host Papa
 

 

Jumpy