summary 6
1.Images-<img> is the tag you use to insert an image. You use alt if your image isn't showing up correctly, it will show your text. To adjust the size you use style to define the width and height of the image
2.Colors-To define a color you can just write the color, but if you want a more specific color you can use RGB values, HEX values, HSL values, RGBA values, and HSLA values. To define text colors you just put color to define background color you use background-color.
3.Background-You can set your back-ground to either a color or a picture. Opacity can also be in the background to adjust the colors. to assign a background image you use this in CSS-
p {
background-image: url("paper.gif");
}