This is a follow up to the link below
Preparing the images for retina-ready (web)
This is clarification, because so many words mean different things to different people. It appears that to have one image that looks good on both retina and non-retina device:
if the image on the screen should be max-width of 400 and max-height of 300, then the image itself should be 800 x 600, with a ppi of 144. Then the file should be highly compressed to minimize its download time.
When you display the image, you force it to its max-width and max-height using css/html code like this:
<img src:"imagethatis800x600.jpg" style="width:400px; height:300px;" width="400" height="300" />
Is this correct? (I have already resolved that our company won't be using responsive.js or a cdn.)