Including images with your code sample
Often a layout question involves images, and without those images available, the code example doesn’t properly demonstrate the issue at hand.
You can include images in your example code by linking to images on the Placehold.it site. For example, if your design includes an image that is 500 x 400px in size, you can include it in your code with the following:
<img src="http://placehold.it/500X400" alt="text equivalent of image goes here">
So the key here is to change the last part of the URL to the width and height or your image. If, say, your image is 300 x 200px, you would change the link to
<img src="http://placehold.it/300x200" alt="text equivalent of image goes here">