If there a way to make it so I can put the image URL in a css stylesheet and it will display on my homepage as if I were using an <img src=""> tag?
You can do this by setting the background-image of an element. #test { background-image:url(http://www.examplesite.co.uk/image.jpg); height:100px; width:100px; } <div id="test"></div> Code (markup):