Calling files on localhost

0

I installed a script made in codelgniter in localhost, but the site is completely unformatted and no functions are working, I believe it is not not making the correct call of css, js files.

<link rel="shortcut icon" type="image/png" href="http://www.localhost/assets/img/favicon.png" />

<!-- css -->
<link rel="stylesheet" href="http://www.localhost/assets/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="http://www.localhost/assets/css/foundation.min.css">
<link rel="stylesheet" href="http://www.localhost/assets/css/jquery.sidr.dark.css">
<link rel="stylesheet" href="http://www.localhost/assets/owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="http://www.localhost/assets/owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="http://www.localhost/assets/tooltipster/dist/css/tooltipster.bundle.min.css">      
<link rel="stylesheet" href="http://www.localhost/assets/css/app.css">

<!-- js -->
<script src="http://www.localhost/assets/js/vendor/jquery.js"></script><scriptsrc="http://www.localhost/assets/js/vendor/pace.min.js"></script>
<script src="http://www.localhost/assets/js/vendor/what-input.js"></script><scriptsrc="http://www.localhost/assets/js/vendor/foundation.min.js"></script>
<script src="http://www.localhost/assets/js/vendor/foneMascara.js"></script><scriptsrc="http://www.localhost/assets/js/vendor/jquery.mask.min.js"></script>
<script src="http://www.localhost/assets/js/vendor/jquery.sidr.min.js"></script><scriptsrc="http://www.localhost/assets/owl-carousel/owl.carousel.min.js"></script>
<script src="http://www.localhost/assets/js/vendor/jquery.paginate.js"></script><scriptsrc="http://www.localhost/assets/tooltipster/dist/js/tooltipster.bundle.min.js"></script>
<script src="http://www.localhost/assets/js/app.min.js"></script>

Theaddressofthefilesinlocalhostis:

  

localhost/panamerico

andinthecallsthefolder"panamerico" is not appearing.

    
asked by anonymous 28.08.2016 / 03:49

1 answer

0

If the files are in the same folder as your main html, you can call the file name of the file and the name of the file. Example <link rel="nome_da_pasta/nome_arquivo>"

    
28.08.2016 / 05:21