HTML Diff
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 &lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta charset="UTF-8"&gt; &lt;title&gt;Image&lt;/title&gt; &lt;link rel="stylesheet" href="style.css"&gt; &lt;/head&gt; &lt;body&gt; &lt;img src="logo.png" width="300" height="240" alt="Logo"&gt; &lt;/body&gt; &lt;/html&gt;
8 &lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta charset="UTF-8"&gt; &lt;title&gt;Image&lt;/title&gt; &lt;link rel="stylesheet" href="style.css"&gt; &lt;/head&gt; &lt;body&gt; &lt;img src="logo.png" width="300" height="240" alt="Logo"&gt; &lt;/body&gt; &lt;/html&gt;