moving images in html code example
Example 1: images in html
<img src="image.jps">
//image.jpg is where you would put the inage source.
Example 2: how to add a background image in html
<!-- HTML -->
<div id="imageDiv"></div>
<!-- CSS -->
<style>
#imageDiv {
background-image: url('someimage.png');
}
</style>