skip to Main Content

I have created a webpage with twitter bootstrap css, and have an image link. Image attached. However, this image does not load. All other images load.

Can someone tell me the problem

Code is as follows:

<div class="col-lg-4">
                    <img class="img-responsive img-border-left" src="../img/aircheck.jpg" alt="">
                </div>

The link to image is www.airtec-intl.com/img/aircheck.jpg.

2

Answers


  1. Are you sure of the relative path?
    Try this out:

    <img class="img-responsive img-border-left" src="img/aircheck.jpg" alt="">
    
    Login or Signup to reply.
  2. Did you ever browse the url?

    Forbidden

    You don’t have permission to access /img/aircheck.jpg on this server.

    Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

    How can you expect this url to load?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search