Ok good, you understand how to insert images to your webpage. Now you want to resize them and align
them to the correct side of you webpages. As you should already know, this is the command you use to insert an
image
<IMG SRC="cool.gif">
betweeb IMG and SRC, you simply need to add WIDTH=200 HEIGHT=250 so for example you type this;
<IMG WIDTH=200 HEIGHT=250 SRC="cool.gif">
First, SRC stands for Source, you replace WIDTH=200 with whatever number you like, same goes
for HEIGHT=250, next you can add and ALIGN feature like this;
<IMG SRC="cool.gif" ALIGN=RIGHT>
You can ALIGN=LEFT also, if you want to center it, type this;
<CENTER><IMG SRC="cool.gif"></CENTER>
Same goes here, replace cool.gif with the correct picture name, that is of course if cool.gif
is in the same folder as the HTML page, if not you need to type in the full path.
So now we continue, how about adding forms to your website? Click on the Go Foward link below
and to get to know how to add forms to your website!!!