answersLogoWhite

0

The image source="is the URL to the location of the image". If you right click on any image on a web page, and select Properties, a window will open that contains the Address (URL) of that image. This URL is the image source.(You could copy and paste it into the browser, and see it)

If you have an image on your computer it must be uploaded to the server to be displayed on the web page. Once it has a home on the server you will have the address (source) The address (URL) will look like this for example: http://yourhostwebsiteurl./yourimage.jpeg. Once you have the URL for the image you can insert it into the HTML document using <img> tags. It will look like this:

<img src="http://yourhostwebsiteurl./yourimage.jpeg"> Broken down it means < imgage source = (the value) the address (URL) of the image where it is located / (for the name of the image) Yourimage.jpg>

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering
Related Questions

How do you upload an image to a HTML document?

To put an image in an HTML document, first upload the image to a web server somewhere. Then, copy the URL of the document. Finally, place the following code into the HTML document: &lt;image src="PASTE URL HERE" /&gt;


Can you insert an image in table header in HTML?

Yes, you can insert an image anywhere in the code. You just have to insert the img tag before the area you want to insert it.


How do you insert a video from the internet into an HTML document?

In order to insert a video, you can paste the link into HTML. This link will cause the video to embed in webpage.


Written remarks in your HTML or CSS document which will not be displayed in the browser?

Comments are not displayed by the browser, but they can help document your HTML source code.


How can you get the HTML code from a HTML document?

If you mean HTML website, just check the page source. If you mean a '.html' document, Right click and select Open With and select any text editor.


When you insert an image filename malaysiagif the HTML tag will appear as?

&lt;img src="malaysia.gif" /&gt;


How do you put a picture in a website using HTML codes?

Open notepad or whatever you write HTML with. Place the image you want in the same folder your HTML document is in. In your HTML document editor (Notepad) write the following- &lt;img src=your images name.jpg&gt; (or .GIF or . PNG whatever type of image you are using)


What is HTML code to create a webpageb to insert an images of input devices and output devices?

The code to insert an image beings with the &lt;img&gt; tag. If you want the user to enter the image, you have to apply image upload.


How do you make marquees?

In the body of your HTML document, you type in: &lt;marquee&gt;You insert your text here&lt;/marquee&gt;


How do you insert picture from desktop to HTML page?

You don't actually insert an image into an HTML page. An HTML page can display an image from any location where the browser has access to the file. Let us assume that the image you want to display on your HTML page is image.jpg. You use the tag to tell the browser to display your image. The person looking at your HTML page needs to be able to access the file on your desktop. You normally would upload your image to the Web server, so the visiting browser can see your image. If the image is on your desktop and the browser has access to your desktop content, here is the code you would use to display your image on the Web page:


How do you convert an image into an HTML page?

you don't actually make an image into a page you need to save it as a .jpeg or .gif image and then use it in an HTML document such as a Word document saved as an HTML page, or using a web design program like Dreamweaver for instance using the jpeg as a background or a gif as a web site button


How To Embed Images In Text?

You can embed an image in HTML via IMAGE tag. It can be written as &lt;img src="image-source"/&gt;