How to insert an image

To better fit an image into html page, you might need to modify its size.

<style>
  img {
    /* change the width and height */
    width: 200px;
    height: 200px;
    /* the image will not be squashed */
    object-fit: cover;
  }
</style>

Free Images Website