Topic: Need Help with a gallery.
HI I am trying to create gallery for my website but the pictures are not showing up. I tried million of different things but they never work out. The page opens up but instead of the pictures showing its just a icon rotating. I am writing this website via dreamweaver and it is a php
Here is my code
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Solus Project</title>
</head>
<body>
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId: "juicebox-container",
galleryWidth: "100%",
galleryHeight: "100%",
backgroundColor: "#222222"
});
</script>
<div id="juicebox-container">
<!-- Image gallery content for non-javascript devices -->
<noscript>
<h1></h1>
<p></p>
<p><img src="images/5.jpg" title="5" alt="" /><br>5 </p>
<p><img src="images/6.jpg" title="6" alt="" /><br>6 </p>
<p><img src="images/8.jpg" title="8" alt="" /><br>8 </p>
<p><img src="images/unspecified.jpg" title="1" alt="" /><br>1 </p>
<p><img src="images/unspecified3.jpg" title="3" alt="" /><br>3 </p>
</noscript>
<div id="juicebox-container"></div>
</div>
<!--END JUICEBOX EMBED-->
</body>
</html>
Thank you