To add images to a simple
HTML page is not to hard it's simple with some codes!
Here is the key to add image to a simple page:
HTML Code:
<img src="The link or the place of image">
This is the code what we need to add image to our page!
We put this code between
<body>...</body> tags!
At the code
<img src=".."> we can play with image like; we can change the size of the image or we can write an ALT text when we put our mouse on the image there should appear a text, etc...
For to change the size of the image, we use these two attributes (
weight and height attributes).
These can be used when adding a image like this:
HTML Code:
<img src="ninja.gif" weight="20px" height="30px" alt="The text what will shown when our mouse goes on image">
With this code we can add to our page a simple image With
20px weight,
30px height...
We can change the image place in the page with "algin="side of the page where image want to go" often goes algin="center" or sometimes we use middle!...
There is an example where to add the image codes:
Then open your page and you will see how this works!
This tutorial belongs to me.
-Regards, c0de!