[Solved] Image not displayed online?


img{
    width:210px;
    height:210px;
    -webkit-transform:rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
    position:absolute;
    left:100px;
    top:100px;
  }
<img src="http://images.all-free-download.com/images/graphiclarge/beautiful_nature_landscape_05_hd_picture_166223.jpg" alt="logo">

Put your image on server. There are many options using which you can put your image online like imgur, imgbb

instead of giving length give height to your image.

Hope this helps.

solved Image not displayed online?