Created
July 25, 2018 14:16
-
-
Save bmorelli25/dd20bbe6c3cac2402042e55c4d4aa9a6 to your computer and use it in GitHub Desktop.
Images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>XYZ Product Detail</h2> | |
<!-- DO NOT USE this as it will load the full size image and the browser does the resize --> | |
<img src="image.jpg" alt="full size image" width="800" height="1000" /> | |
<!-- USE a resized image where the resizing is done from the server and there is no need of browser-side resizing--> | |
<img src="resized_800x1000_image.jpg" alt="resized image" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment