I am trying to add an image into HTML. Using the following works:
<img id="image1" src="http://image.jpg" alt=" " width="300" height="300" />
All i want to do is replace the http with a variable so I can call in the website rather than have it be physically inline:
<img id="image1" src=URL alt=" " width="300" height="300" />
Can anyone help?