I want put background image with external CSS but image doesn't show.
where I do wrong here ? Please suggest
.Header { background-image: url(<ImagesHeaderBackground.jpeg>); height: auto; width: 100% }
<div class="Header"> <img class="Logo" src=images/logo2.jpg alt="Company Logo" width="110" height="35"> <center> <span> <h1 class="Company">IT Solution</h1> </span> </center> </div>
Change how you path the url:
.Header { background-image: url('Images/HeaderBackground.jpeg'); height: auto; width: 100% }
2.1m questions
2.1m answers
60 comments
57.0k users