mommy
02-26-2008, 03:00 PM
A simple image tutorial.
<html>
<body>
<p>
An image from another folder:
<img src="/images/netscape.gif"
width="33" height="32">
</p>
<p>
An image from W3Schools:
<img src="http://www.w3schools.com/images/ie.gif">
</p>
</body>
</html>
<p> - the paragraph tag.
<img> - the image tag.
<src> - put this inside the image tag when you want to load an image from somewhere on a webserver.
<html>
<body>
<p>
An image from another folder:
<img src="/images/netscape.gif"
width="33" height="32">
</p>
<p>
An image from W3Schools:
<img src="http://www.w3schools.com/images/ie.gif">
</p>
</body>
</html>
<p> - the paragraph tag.
<img> - the image tag.
<src> - put this inside the image tag when you want to load an image from somewhere on a webserver.