0
how I can put a visual image using img tag???? Im new!! ""
how I can put image of mine??? using img tag....
1 Odpowiedź
+ 4
<img src="directory_of_your_image"/>
You can also set width and height of your image using width and height.
if your image is on the parent of your html directori, you must use '../' in front of your image filename.
eg.
<img src="../my_img/my_photo.jpg" height="100px" width="50px"/>
or
<img src="../my_img/my_photo.jpg" style="height:100px; width:50px"/>