- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML: Image Tag
The image tag (<img>) in HTML is used to embed images into web pages. Images enhance the visual appeal of a webpage and are commonly used for logos, illustrations, photographs, buttons, and more. Here are the key points about the <img> tag:
Usage:
- The <img> tag is a self-closing tag used to display images on a web page.
- Example:
<img src="https://www.example.com/image.jpg" alt="Example Image">
Src Attribute:
- The src attribute in the <img> tag specifies the URL (Uniform Resource Locator) or file path of the image to be displayed.
- It can be an absolute URL (starting with http:// or https://) or a relative URL (relative to the current document).
- Example with absolute URL:
<img src="https://www.example.com/image.jpg" alt="Example Image">
- Example with relative URL:
<img src="images/logo.png" alt="Logo">
Alt Attribute:
- The alt attribute in the <img> tag provides alternative text for the image, which is displayed if the image fails to load or for accessibility purposes.
- The alt text should be descriptive and convey the content or purpose of the image.
- Example:
<img src="image.jpg" alt="A scenic view of mountains">
Width and Height Attributes:
- You can specify the width and height of the image using the width and height attributes in the <img> tag. These attributes are optional but recommended for controlling the image dimensions.
- Example:
<img src="image.jpg" alt="Image" width="300" height="200">
Responsive Images:
- To create responsive images that scale proportionally based on the device's screen size, you can use CSS or the width attribute with a percentage value.
- Example using CSS for responsive images:
Accessibility Considerations:
- Ensure that all <img> tags have descriptive and meaningful alt text to improve accessibility for users who rely on screen readers or have images disabled.
- Use appropriate contrast and colors in images for better visibility.
Styling with CSS:
- You can apply CSS styles to <img> tags to control their appearance, such as border, margin, padding, alignment, hover effects, etc.
- Example CSS:
<style>
.responsive-img {
max-width: 100%;
height: auto;
}
</style>
<img src="image.jpg" alt="Responsive Image" class="responsive-img">
The <img> tag is essential for including images in HTML documents, providing visual content that enhances the user experience and communicates information effectively.