can someone tell me how to place an image in an HTML document?

  • Thread starter Thread starter Smooth Liar
  • Start date Start date
S

Smooth Liar

Guest
i think it's something like <A HREF img scr "c:/ newfolder~path.jpg">
but it doesn't come...
any good tutorials other than W3C out there? i need to present a web page tomorrow, and i acted a bit cocky!
now i need some good work to back my words up, thax!!
 
<input type="image" src="imagepath.ext"> if you want to make it clickable OR simply <img src="imagepath.ext">. Additional parameters like width, height, border, style and etc. can be used.

For example <img width="240px" height="100px" src="holiday/football.jpg">
 
Back
Top