0 added
0 removed
Original
2026-01-01
Modified
2026-03-09
1
<p>We can easily see that on our Website of a Beginning Coder that there are no images at all. However, well-chosen images that are the right size and are displayed without errors are the key to a successful business. Therefore, Muffin gave us a new assignment: to understand all the formats and uses of images.</p>
1
<p>We can easily see that on our Website of a Beginning Coder that there are no images at all. However, well-chosen images that are the right size and are displayed without errors are the key to a successful business. Therefore, Muffin gave us a new assignment: to understand all the formats and uses of images.</p>
2
<p>To do this, he sent us the layout of our blog with images. We have already saved them to the right folder. All you need to do is load them in their proper places within the layout.</p>
2
<p>To do this, he sent us the layout of our blog with images. We have already saved them to the right folder. All you need to do is load them in their proper places within the layout.</p>
3
<p>So, let’s take a look at how to load images. To do this, we use the tag <img>. This is a single tag, which we already know about. It does not have a closing tag. The <img> tag by itself is useless without its src attribute, which indicates the path and the name of the image.</p>
3
<p>So, let’s take a look at how to load images. To do this, we use the tag <img>. This is a single tag, which we already know about. It does not have a closing tag. The <img> tag by itself is useless without its src attribute, which indicates the path and the name of the image.</p>
4
<img src="logo.png"><p>Let’s load an avatar image on the main page.</p>
4
<img src="logo.png"><p>Let’s load an avatar image on the main page.</p>