Inserting Images
There are different aspects when you add your set image. When first placing an image, you use the img element. Inside that will say src which tells the computer where to find the image. All images must be located in the image folder in the site root folder. The alt is a section in which you add a description of what your image is. You can also add a title attribute for additional information. Browsers can display this information.
Images and Captions
To add a caption, use the figure element. Inside the figure element, the image code and figcaption code should be located here. Figcaption includes the message for the image. You can add breaks in between the image and the caption. You can use as many images within the figure as long as you match each caption to its own image.
Layout Positions
There are different ways to position your content. A normal flow is where every paragraph appears on a new line with no indentations. This is standard. Relative positioning is shifting a paragraph to the top, right, left, and bottom. Absolute positioning does not affect the position of any surrounding elements. Fixed positioning is a position where the element is in relation to the browser window instead of containing elements. Floating elements allow you to position content to the far left or right of the box