Images

Image Copyright: Finn Josten (PSN: Black_SparowYT)

Images HTML:
To make this work is nothing special, just add the img element with its tags.

<img src="link.to.image" alt="text for when image doesnt load in." />





Images CSS:
Images don't need CSS to work, but sometimes they arent the right size. This can then be adjusted with CSS.

img {
  height100px;
  width100px;  /*This together with the height makes the image square*/
}