HTML Image Tag
Next let’s look at actually placing an image on our web site. I’ll use both a transparent and nontransparent image:
<HTML>
<HEAD><TITLE>Background Color</TITLE></HEAD>
<BODY bgcolor=”#0099CC” background=”tiletest.png”>
<center>Transparency is the difference between this:
<br>
<img src=”heart.png” width=10% height=10%><br>
and this:<br>
<img src=”transparentheart.png”></center>
</BODY>
</HTML>

Let me explain the <IMG> tag. In order to include images… » Continue reading: Putting Image into Your HTML Web Page with Image Tag
