I am trying to use this image in an HTML document. If you look at the image, you can clearly see that it is supposed to be a tall image, but when I try to put it in an <img>
tag, it sets it on its side for no reason:
.side-image {
width: 225px;
margin: 6px;
float: left;
}
<img src="https://upload.wikimedia.org/wikipedia/commons/f/f1/Monastir89.jpg" class="side-image" />
How do I prevent this from happening?