Issue
I am trying to access an image in a folder named Images from a folder named Views. But I am not able to access it. I tried the following code:
<div class="col-sm-3" style="background-color:none;">
<img src="/Images/logo.jpg" class="img-responsive img-responsive" style="height:10vh;" alt="Company Logo">
</div>
Solution
<img src="../Images/logo.jpg" class="img-responsive img-responsive" style="height:10vh;" alt="Company Logo">
Hope this works!
Answered By - Hardik
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.