Can we attach an image with its original to the Outlook?

Need to attach an HTML image!!! help please!?

  • Okay, i have this HTML page due in 40 mins so please help me! i have tried to attach an image on the page but it won't work! i've tried to look online for an hour and still won't work. so, what i did was use this image: http://www.copyrightfreephotos.com/gallery/386888705/ (the pic is random, don't mind it) and that in return should look like this right?? --> <img src="http://www.copyrightfreephotos.com/… /> but the image does not pop up! i don't understand when the guidelines say to save it to the same HTML folder/directory, like WTF does that even mean... last time i checked i never saved it in a directory..? the HTML (I'm using text wrangler, notepad++ for windows) is on my desktop right now. anyways, I'm freaking out because i have tons of stuff to do tonight, so if someone helped me that would be awesome. thank you!!

  • Answer:

    Download the Image You right-click the file you want, then (depending on the browser) you press Save target as/Save Image. A dialog box will pop up and ask you where to save the image. You find the directory that contains your html file, place the image there. Modify your IMG html tag The image tag should now read <img src="filename.jpg">. Your image file is now located in the parent directory of your html web page. Explination If your html file is named index.html and is found in c:\myweb\, then your parent directory for when you open the index.html is c:\myweb\. You can then place your image in that directory and change your image tag to <img src="filename.jpg"> (the src field assumes that you begin in the parent directory of the webpage that your viewing). You can also do something like this, create a 'img' directory so its c:\myweb\img\ directory, place the image there. Then change the html tag to <img src="img\filename.jpg"> Hope this solves your problems Note: When you place http://www.copyrightfreephotos.com/ as the base part of your image, it will require an internet connection to load the image. If you use the information in this answer, it will load even if you disconnect the internet, because the image will be available alongside the html page.

MONAE at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

Open Notepad...then click save as...change it to All Files...name the file as index.htm..now you have your web page...open the web page with Notepad...right click on the file click open with click Notepad ...then copy and past this code into notepad..then click save <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-… <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Project</title> </head> <body><img src="picture.jpg" width="1280" height="1024" /> </body> </html> remember the HTML file and your image file needs to be in the same folder....rename your image file to picture and make sure its a jpeg image

It seems as though you're using the page to view the image. Try using this link within your "src=" http://farm1.static.flickr.com/148/386888705_f34627c166.jpg

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.