Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Work with Images | Section
HTML for Frontend Development

Challenge: Work with Images

Swipe to show menu

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:

https://content-media-cdn.codefinity.com/courses/c468052d-6d47-4677-b1d1-fb11ace719b1/meadia-%26-tables/adik.png

Utilize the absolute path for the src attribute of the second image. Access the image here:

https://content-media-cdn.codefinity.com/courses/c468052d-6d47-4677-b1d1-fb11ace719b1/meadia-%26-tables/joking.png

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.html

index.html

Hint
expand arrow
  1. Use the <img> tag to display an image;
  2. Use the src attribute to specify the image location;
  3. Use the alt attribute to provide descriptive text for the image;
  4. Use the width attribute to define the image width;
  5. Use the height attribute to define the image height.
Solution
expand arrow
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Challenge: Images</title>
  </head>
  <body>
    <!-- Image one -->
    <img
      src="https://content-media-cdn.codefinity.com/courses/c468052d-6d47-4677-b1d1-fb11ace719b1/meadia-%26-tables/adik.png"
      alt="Emotion that opens the mouth"
      width="256"
      height="256"
    />

    <!-- Image two -->
    <img
      src="https://content-media-cdn.codefinity.com/courses/c468052d-6d47-4677-b1d1-fb11ace719b1/meadia-%26-tables/joking.png"
      alt="Emotion that shows the tongue"
      width="256"
      height="256"
    />
  </body>
</html>
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 18

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

Section 1. Chapter 18
some-alt