As per my title, what is the correct way? I have seen both of these appearing in websites:
<img alt="My image" height="60" src="http://www.website.com/images/myimage.png" width="80">
And
<img src="images/myimage.png" width="60" height="80" alt="my image"/>
What is the good of each type? Does the 1st one aids in faster loading of image as compared to the 2nd one?
Thanks.