Hi! Welcome to my web site
helper! You must be here for some help with your
site! I mean why else would you? Well if it is
for another reason, please feel free to stay and
browse around... maybe you might learn something!
My responsiblity here is to help other people get
started with their Pokémon sites! Oh and if I
didn't say so yet, my name's Chuckles! Nice to
meetcha! So let's get started shall we?
RULES OF ME TEACHING HTML
CODE:
-
You could
give us a link for helping you. That
would just be great! Get some buttons/banners
below. |
-You
must not take, steal, or copy anything
here and try to take credit for yourself.
|
Now I won't be covering HTML
editors here, I'll just be listing some codes you
can use and how you can adjust them to your needs.
Once I learn more about editors, I'll cover them
here, okay?
You
can decypher the samples below this way:
<This is the beginning tag.
Anything that we add to it as a continuous
example will be in bold>This is the
variable between the tags such as text, images,
etc...<This is the closing tag>
This is how it turns out. All text
like this will be in orange.
There may be
some notes about the code here.
<BODY>
PROPERTIES
<body>...</body>
The BODY
tags should be located at the very beginning and
very end of your documents. Everything that you
would want to put in your page such as images and
text are in between the opening and closing tags.
The BODY tags affect almost everything
that you would see on that page. For our examples,
we'll use the same BODY tags that we are
using on this same page.
<body bgcolor="#000000">...</body>
The
BGCOLOR indicates the color of the
background. The one we are using now is in black,
but you can't see it due to the wallpaper. More
on that later. You can adjust the color by
changing the numbers. More on the Hexadecimal
Colors later. But if you're just lazy, you can
just insert a word such as black or white. Just
simple colors, not like that Rockin' Robin Blue.
<body bgcolor="#000000"
background="WALLPAPER URL">...</body>
The
BACKGROUND tag puts in the picture in your
background, just as you would if you put in
wallpaper in a Windows Desktop. Just upload your
wallpaper onto your server then enter the code
within the BODY opening tag and insert the
wallpaper's URL.
<body bgcolor="#000000"
background="WALLPAPER URL" bgproperties="fixed">...</body>
This
tag makes the background sorta stick... it doesn't
move when you scroll the window... Real appealing
to the eye.
ORGANIZATION
<center>This centers the text.</center>
This centers the text.
<P>Indicates a paragraph</p>
Indicates a paragraph
This can also
be used to break in sections on the page. You don't
really need the ending tag as long as you use a
new one.
<br>
This
breaks a new line into your document.
IMAGES
<img src="IMAGE URL">
When
putting up an image, you must first upload it
onto your server. Then from there, type in the
code above and insert its URL within the quotaion
marks. The IMG notes it being an image.
The SRC notes the source. You'll also be
using the SRC in other things. There are also
more variables to enter within the code. Read on
for more... The new tag will be in italics.
Be sure to follow the examples.
<img src="http://members.aol.com/battlerobo/PokemonIcons/MrMime3.gif">

This will be
our example pic.
<img src="http://members.aol.com/battlerobo/PokemonIcons/MrMime3.gif"
alt="Mr. Mime!">
The ALT
tag specifies text if the image is not displayed.
It also shows the same text if you put your
cursor over the image. Try it!
<img src="http://members.aol.com/battlerobo/PokemonIcons/MrMime3.gif"
alt="Mr. Mime!" border=3>
The BORDER
tag controls the thickness of the border around
the image. If you do not want a border around it,
then you don't need to put in this tag. But if
you are using the image as an anchor (which we'll
cover later in anchors and links) and don't want
to put it in a border then use the border=0 tag.
You can control the thickness of the border with
the number, noticably the larger the number, the
thicker the border.
<img src="http://members.aol.com/battlerobo/PokemonIcons/MrMime3.gif"
alt="Mr. Mime!" border=3 height=75
width=50>
The HEIGHT
and WIDTH tags specify the height and
width of the image in pixels. The larger the
number the more pixels are used and the picture
becomes larger. You can sort of manipulate the
picture this way online, but the pic isn't as
clear as you'd like it to be. You should also use
these to specify the EXACT height and width of
the pic so browsers can load the pic faster, or
make the page look sleaker just in case the pic
is missing!
MUSIC,
MOVIES
<bgsound src="SOUND URL">
You
can put in a background sound onto your page with
this code. It's almost like putting up an image:
Upload the sound onto the server, then put in the
code while inserting the sound file's URL. With
this you can use MIDI and WAVE files. You can
also use this tag: loop="infinite"
to have to sound play infinite times. You can
change the 'infinite' to a number so your viewer
can listen to it a few times. Just insert it
within the code like so:
<bgsound loop="infinite"
src="SOUND URL">
If
you would like to give your viewers the option to
stop or pause the sound, then you should use the EMBED
code below.
<embed src="FILE URL">
You
can use this code to have movies, sounds, or
other media files play on your page. Be wary of
download time! The LOOP tag can be used here too!
FRAMES
<html>
<head><title>PAGE TITLE</title></head>
<frameset cols="25%,*">
<frame src="FRAME 1 URL"
name="FRAME 1 NAME">
<frame src="FRAME 2 URL"
name="FRAME 2 NAME" scrolling=auto>
</frameset>
<noframes>
Sorry, your browser is not capable of
handling frames! Please use our frameless
section!
</noframes>
</html>
|
In exchange for this service, all that I ask is
that you link to us on your site! Just use the
below methods to do so! I mean, that's not asking
much considering that this service is FREE!!
Link to us with a Text Link: |
The PokéPalace |
<a href="https://members.tripod.com/gljay/index.html">The
PokéPalace</a> |
Link to us with a Banner: |
 |
<a href="https://members.tripod.com/gljay/index.html"><img
src="http://membes.tripod.com/gljay/mime_site/linkmebanner.gif"
border="0" width="402"
height="42"></a> |
Link to us with a Button: |
 |
<a href="https://members.tripod.com/gljay/index.html"><img
src="https://members.tripod.com/gljay/mime_site/linkmebutton.gif"
width="100" height="30"
alt="The PokéPalace!" border="0"></a> |
|