Why aren't the images displayed?
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <link href="slider/css/jquery.bxslider.css" rel="stylesheet" /> <style> *{ margin:0; padding:0; list-style:none; text-decoration: none; } .mainSlider{ width:800px; margin:auto; } .bxslider img{ position:relative; max-width:100%; } </style> </head> <body> <section class="mainSlider"> <ul class="bxslider"> <li><img src="slider/images/pic.jpg" alt="pic"/></li> <li><img src="slider/images/pic2.jpg" alt="pic1"/></li> <li><img src="slider/images/pic3.jpg" alt="pic3"/></li> </ul> </section> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> <script src="slider/js/jquery.bxslider.js"></script> <script type="text/javascript"> $('.bxslider').bxSlider({ auto: true, autoControls: true }); </script> </body> </html> I inserted js into the head and after the body but after reloading the page it appears momentarily and the preloader always works and the minuses do not help the case. The path to the images seems to be correct - I almost broke my head already! The error has changed: screen

