I'm facing a challenge with some code that I didn't write which includes a background-image. While I want to maintain the identical appearance, I prefer to set the image in my markup rather than CSS. However, I'm unsure of how to do this.
This is the current CSS setup for the image:
.clean-topbar{
background-image:url(http://www.elpasodeventa.com/mls_content/gep/photos/818802/20191118214112529586000000-o.jpg);
background-repeat:no-repeat;
background-position:center;
background-size:cover;
position: relative;
height:200px;
}
Below is the part of the markup where the image appears:
<div class="clean-topbar">
...
I need guidance on how to specify the image in my HTML markup instead of using CSS. For reference, here is a link to a fiddle: