Course Content
Ultimate HTML
Ultimate HTML
Challenge: Images
🏁 Goal
Practice using the absolute path for images in HTML.
📋 Task
Ensure the src
attribute of the first image uses the absolute path. You can find the image at:
Utilize the absolute path for the src
attribute of the second image. Access the image here:
Specify the appropriate alt
attribute value for both images. Remember, the alt
value is crucial for providing context in case images fail to load or for users relying on screen readers.
index
index
index
- Use the
img
tag to specify an image. - Use the
src
attribute to specify the image's location. - Use the
alt
attribute to furnish a descriptive text for the image. - You can use the
width
attribute to define the image's width. - You can use the
height
attribute to define the image's height.
index
index
index
Thanks for your feedback!