If you had used any absolute links in your local development machine, then change it to relative links if it has to work everywhere.
For example: "<img src="c:\work\images\image.jpg>" will work on your local machine but not on the remote ones. So make the paths relative. For example "<img src="images/image.jpg>". The file containing this code should be in the same folder where the "images" folder resides.