Computer Hope

Internet & Networking => Web design => Topic started by: Eduardchile on October 24, 2010, 06:43:54 PM

Title: Inserting foto in html document?
Post by: Eduardchile on October 24, 2010, 06:43:54 PM
I am designing a website using html. My website is not yet on line!
How do I insert a foto stored at my desktop in my html document?

P. s. I have an Apple Macintosh computer!

Eduard
Title: Re: Inserting foto in html document?
Post by: kpac on October 25, 2010, 05:15:53 AM
You need to copy the image into (e.g.) the same folder as the HTML file.

Then link to it like this:
Code: [Select]
<img src="image.jpg" height="565" width="530" />

etc...
Title: Re: Inserting foto in html document?
Post by: reddevilggg on October 25, 2010, 09:38:12 AM

Additional information can be found here -

http://www.w3schools.com/ (http://www.w3schools.com/)