0 added
0 removed
Original
2026-01-01
Modified
2026-03-09
1
<p>Add an image to the page using what you've learned in the chapter about<a>links and images</a>.</p>
1
<p>Add an image to the page using what you've learned in the chapter about<a>links and images</a>.</p>
2
<p>Look at the image and figure out which one from the list you need to use: logo.png, picture.jpg, icon.svg, banner.png, or avatar.jpg.</p>
2
<p>Look at the image and figure out which one from the list you need to use: logo.png, picture.jpg, icon.svg, banner.png, or avatar.jpg.</p>
3
<p>Next, set the correct size for the image using the width and height attributes.</p>
3
<p>Next, set the correct size for the image using the width and height attributes.</p>
4
<p><strong>Important!</strong>The image may have both attributes, or it may have only one of them. The size should be a multiple of 20.</p>
4
<p><strong>Important!</strong>The image may have both attributes, or it may have only one of them. The size should be a multiple of 20.</p>
5
<p>This is an additional challenge for reinforcing your image-handling skills.</p>
5
<p>This is an additional challenge for reinforcing your image-handling skills.</p>
6
<p><strong>Solution</strong></p>
6
<p><strong>Solution</strong></p>
7
<p>The solution to the challenge will be available in a few minutes. Use it if you encounter difficulties. In the meantime, try to complete the challenge on your own.</p>
7
<p>The solution to the challenge will be available in a few minutes. Use it if you encounter difficulties. In the meantime, try to complete the challenge on your own.</p>
8
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Image</title> <link rel="stylesheet" href="style.css"> </head> <body> <img src="picture.jpg" width="400" alt="Picture"> </body> </html>
8
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Image</title> <link rel="stylesheet" href="style.css"> </head> <body> <img src="picture.jpg" width="400" alt="Picture"> </body> </html>