McDuck4
McDuck4

Reputation: 662

link working on localhost, not on live

I do not understand why my link "back to portfolio" is working on my localhost, and not on my live domain. The only links there is not working, is the back to portfolio button.

Can anybody see why?

My portfolio link

<span class="col-xs-12">
  <a href="portfolio.php" class="btn btn-border">
     <i class="fa fa-rocket"></i>
        Back to Portfolio
   /a>
   <a href="contact.php" class="btn btn-border">
      <i class="fa fa-comment-o"></i>
         Work with me?
   </a>
</span>

Upvotes: 0

Views: 68

Answers (1)

Amit Kumar Pawar
Amit Kumar Pawar

Reputation: 3330

<span class="col-xs-12">
  <a href="Portfolio.php" class="btn btn-border">
     <i class="fa fa-rocket"></i>
        Back to Portfolio
   /a>
   <a href="contact.php" class="btn btn-border">
      <i class="fa fa-comment-o"></i>
         Work with me?
   </a>
</span>

its case sensitive change fine name o Portfolio or vise versa

Upvotes: 1

Related Questions