answersLogoWhite

0


Best Answer

Hope it works!

Only works on Google chrome to get html or url. Sorry (There could be another way for other browsers)

Drag the image to the top right hand corner.

Drop.

You should see the image.

Right click.

Select inspect element.

The HTML CODEC should appear.

NOTE:// EDITING A WEBSITE THIS WAY COULD BE ILLEGAL THIS IS ONLY Copy resource of YOUR own material any illegal movement is your problem and i have nothing to do!//.

Now look for Scr on the highlighted portion of HTML.

There should be a link.

Right click and select "edit attribute" and copy it. There's the link. Revise it by pasting it on the browser URL text box and go enter.

Good Luck.

Also I'm a developer and I recommend Google Chrome for HTML.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you find url for image on desktop?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you find the image source to insert into an HTML document?

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>


What src does mean?

Src is an attribute for an image tag used by the website to find the source of the image here's a visual <img src='this is the place you put the image's URL'>


What does IMG and SRC mean?

is the tag name for an image element in a webpage. is the tag, with src="" specifying the source URL of the image. This can be a local URL ("myimage.jpg") or a global URL ("http://www.mysite.com/myimage.jpg"). You can also use a local site URL ("/myimage.jpg"), which refers to the root URL of your website.Basically the img is saying you are putting an image there and src is telling where the image is located.


How do you give a link for a background image using CSS?

You will need to use the url() function. For example: background-image: url('/images/bg.png');


What HTML tag is used to create a link through an image?

<a href="website URL here"><img src="image URL here"></a>

Related questions

How you find an images URL?

Right click on the image and click properties.


How do you find an image URL?

On most web browsers you can simply right-click the picture and select "Properties" from the drop-down menu. A window with the image information (including the URL) should then pop up.


What does the image URL mean for making NeoPet banners?

if image is displayed in that URL, then its Image URL. Else if Text displayed means its Text URL.ByChandraseka


What is a image URL?

A image's link or the website where you found the image.


How do you find a pictures HTML?

Using HTML to display images you use the tag. To display an image on a page, you need to use the (source attribute) src= The value of the src attribute is the URL of the image (skull) you want to display on your page which means that the image you want to display must be uploaded to a server, and have a web address (URL). The URL for the image points to the location where the image is stored on the server. It should look like this: Broken down it means < img source = "the address (URL) of the image is located / (for the name of the image) Youri_picture.jpg">


How do you find the image source to insert into an HTML document?

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 &lt;img&gt; tags. It will look like this: &lt;img src="http://yourhostwebsiteurl./yourimage.jpeg"&gt; Broken down it means &lt; imgage source = (the value) the address (URL) of the image where it is located / (for the name of the image) Yourimage.jpg&gt;


How do you get the url of an image?

Right click, "properties," then the URL should be there.


What src does mean?

Src is an attribute for an image tag used by the website to find the source of the image here's a visual &lt;img src='this is the place you put the image's URL'&gt;


Where can I find great wallpapers for my desktop?

You can find quality desktop wallpapers simply by typing hassle free wallpapers on URL entry bar. Simply not click the sponsored links and look for ones that are not shady looking URLs.


What does IMG and SRC mean?

is the tag name for an image element in a webpage. is the tag, with src="" specifying the source URL of the image. This can be a local URL ("myimage.jpg") or a global URL ("http://www.mysite.com/myimage.jpg"). You can also use a local site URL ("/myimage.jpg"), which refers to the root URL of your website.Basically the img is saying you are putting an image there and src is telling where the image is located.


What is the HTML command used to display an image in background?

style="background-image: url('image.jpg')" Example: &lt;body style="background-image: url('background.jpg')"&gt;


How do you make a link with a pic for piczo?

Any image link is done the same way. You need the part of the code that contains the url, the part that contains the image and the part [optional] that contains the words that show up when you hover over the image. &lt; a href= " url"&gt; is the first part of the code. The next part is &lt; img src= " image url"&gt; That is the image url. If you want words to show under the mouse when you hover you add alt=" whatever you want to say"&gt; after &lt; img src=" image url"&gt; So the finished code will be &lt; a href=" url"&gt;&lt; img src=" image url" alt=" whatever you want to say"&gt;