HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-03-09
1 <p>Muffin realized that there was no “About me” section on his website after a business meeting in Moscow. He has already given an assignment to his coders to create such a page, and we have been instructed to create a gallery with his photos.</p>
1 <p>Muffin realized that there was no “About me” section on his website after a business meeting in Moscow. He has already given an assignment to his coders to create such a page, and we have been instructed to create a gallery with his photos.</p>
2 <p>We already know that there are links and pictures. Are we able to put one inside the other? Can we make an image become a clickable link?</p>
2 <p>We already know that there are links and pictures. Are we able to put one inside the other? Can we make an image become a clickable link?</p>
3 <p>Of course! To do this, you need to wrap the &lt;img&gt; tag in the &lt;a&gt; tag. For example:</p>
3 <p>Of course! To do this, you need to wrap the &lt;img&gt; tag in the &lt;a&gt; tag. For example:</p>
4 &lt;a href="http://catsby.com"&gt; &lt;img src="cat.png" alt="Muffin"&gt; &lt;/a&gt;<p>Often hyperlinked image are used in galleries, where a smaller version of an image links to a full-size version or to a separate page with that image and a caption.</p>
4 &lt;a href="http://catsby.com"&gt; &lt;img src="cat.png" alt="Muffin"&gt; &lt;/a&gt;<p>Often hyperlinked image are used in galleries, where a smaller version of an image links to a full-size version or to a separate page with that image and a caption.</p>
5 <p>Now we will try to add hyperlinked images to our selfie gallery that will lead to separate pages displaying the respective photos.</p>
5 <p>Now we will try to add hyperlinked images to our selfie gallery that will lead to separate pages displaying the respective photos.</p>