We are independent & ad-supported. We may earn a commission for purchases made through our links.
Advertiser Disclosure
Our website is an independent, advertising-supported platform. We provide our content free of charge to our readers, and to keep it that way, we rely on revenue generated through advertisements and affiliate partnerships. This means that when you click on certain links on our site and make a purchase, we may earn a commission. Learn more.
How We Make Money
We sustain our operations through affiliate commissions and advertising. If you click on an affiliate link and make a purchase, we may receive a commission from the merchant at no additional cost to you. We also display advertisements on our website, which help generate revenue to support our work and keep our content free for readers. Our editorial team operates independently of our advertising and affiliate partnerships to ensure that our content remains unbiased and focused on providing you with the best information and recommendations based on thorough research and honest evaluations. To remain transparent, we’ve provided a list of our current affiliate partners here.
Software

Our Promise to you

Founded in 2002, our company has been a trusted resource for readers seeking informative and engaging content. Our dedication to quality remains unwavering—and will never change. We follow a strict editorial policy, ensuring that our content is authored by highly qualified professionals and edited by subject matter experts. This guarantees that everything we publish is objective, accurate, and trustworthy.

Over the years, we've refined our approach to cover a wide range of topics, providing readers with reliable and practical advice to enhance their knowledge and skills. That's why millions of readers turn to us each year. Join us in celebrating the joy of learning, guided by standards you can trust.

What Is an HTML Image Link?

By Victoria Blackburn
Updated: May 16, 2024
References

When a person is creating a web page that contains an image, the image is not actually inserted into the page with the rest of the information. To display images on the web, an HTML image link is used instead of embedding the image within the page. To use the HTML image link, the <img> HTML tag is used to provide the information for where the image is stored and can be accessed. This tag can be used with all browsers and can be used to load all image types that are supported by the browsers.

Using the <img> tag alone provides no information to the web page that is meant to contain an image. There are two attributes that are required for the HTML image link to be written correctly so that the image loads when the web page loads. There are also several optional attributes that can be included to provide further information. The attributes that are required to write the image link are src and alt.

The src attribute of the HTML image link provides the web address, or URL, where the image is located. The URL can take one of two forms. An absolute URL provides a complete web address that directs to an image on another website. An example of including an absolute URL for the src attribute would be: src="http://www.website.com/image.jpg" — where website.com is pointing to another site and image.jpg is pointing to a specific image.

The other option for the URL within the src attribute is to write a relative URL. In the case of a relative URL, the web address is providing a link to an image within the same website directory. The relative URL is a truncated version of an absolute URL as the image is located in the same place as the web page. Examples of the src attribute with a relative URL are: src="image.jpg" or src="images/image.jpg". The only difference in these examples is where the image is located, as it is located within an images folder in the second example.

The other required attribute is alt, which provides alternate text for the image. This is not text that is displayed if a user hovers a mouse over the image, but text that is displayed if the image cannot be displayed for some reason. There are many reasons why an image may not be displayed, including cases in which the URL in the src attribute is incorrect or broken, or when a user who has a visual impairment is using a screen reader.

The most basic code for an HTML image link will look something like the following: <img src="URL" alt="text" />. Since the <img> tag does not have an end tag, it is important to end it with /> so that the browser knows that the instruction has ended. The src attribute points to a location for an image, so it is important to make sure that links to other sites are not broken and that images are not moved around within a website directory, and to correct links when problems do occur.

EasyTechJunkie is dedicated to providing accurate and trustworthy information. We carefully select reputable sources and employ a rigorous fact-checking process to maintain the highest standards. To learn more about our commitment to accuracy, read our editorial process.
Link to Sources
Discussion Comments
Share
EasyTechJunkie, in your inbox

Our latest articles, guides, and more, delivered daily.

EasyTechJunkie, in your inbox

Our latest articles, guides, and more, delivered daily.