set image url in css code example
Example 1: how to add image with url in css
background-image: url('images/my-image.png');
Example 2: change img src css
// You cannot do it with CSS alone
// You can with JS
element.style.src = "someImage.jpg";
// Or with jQuery
$('some-element').attr('src', 'someImage.jpg');