HTML COURSE โ€ข LESSON 15

HTML Images

Images are displayed using the HTML <img> element.

Basic Image

Image Example
<img
src="student.jpg"
alt="Student learning"
>

The src Attribute

The src attribute specifies the image location.

The alt Attribute

The alt attribute provides a description if the image cannot load. It also improves accessibility.

Image with Alternative Text
<img
src="html-course.jpg"
alt="Student studying HTML"
>

Image Width and Height

Image Size
<img
src="student.jpg"
alt="Student"
width="400"
height="250"
>

Images from Another Website

External Image
<img
src="https://example.com/image.jpg"
alt="Example image"
>
โš  Important

Always use meaningful alternative text. Do not leave the alt attribute empty unless the image is purely decorative.

โšก EDUHUB Live HTML Editor

LIVE PREVIEW