
When you don't specify an image, the browser will display a default image.
This default image is usually a broken image icon, which is a placeholder image that indicates the image is missing.
The broken image icon is a common sight on the web, and it's a clear signal to the user that something went wrong.
In HTML, you can specify a default image to display when the main image can't be loaded, which is a nice touch for user experience.
A different take: B Tag Html
Missing Images
Missing images can be a real problem on your website, especially if they're used as backgrounds or are supposed to be visible on the page. A broken image icon can appear in its place, looking bad and potentially messing up the layout of your page.
This broken image icon is usually smaller than your original image, which can lead to reduced contrast or visibility of foreground text and other elements. This can cause inconvenience for your visitors and hurt your website's accessibility.
If the missing image was the background of an element, the structure of the page should not be altered. However, a missing background image could still lead to reduced contrast or visibility of foreground text and other elements.
To prevent this, you can follow the steps in our guide on how to prevent hotlinking of images.
You can also use the JavaScript event handler onerror to show an alternative image if the original one can't be loaded. This is written in the img tag and catches the error.
Here's an example of how to do it:
In the example above, an image file named missing-image.jpg should be inserted. If the image can't be loaded, the onerror event is fired and loads the file default-image.jpg in the event handler.
Consider reading: Html Form Submit Event
Image Tag Attributes
Image Tag Attributes are an essential part of HTML that help ensure your website is accessible and functional.
The alt attribute is used to provide a description of the image, which is displayed if the image is missing or if a user's browser is set to not display images. This is especially important for visually impaired users who rely on screen readers to navigate your website.
You should also use the title attribute to provide a tooltip that appears when a user hovers over the image. In most cases, both alt and title attributes will have the same textual content.
Here are the key functions of the alt attribute:
- Displays if the image is missing or if a user’s browser is set to not display images
- Read aloud by screen readers for visually impaired users
By using descriptive alt text and title attributes, you can ensure that your website is accessible and user-friendly, even if images are missing or not displayed.
Frequently Asked Questions
What is the default display of HTML?
Most HTML elements default to either block or inline display. The display property can be used to override this default behavior
Featured Images: pexels.com


