<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/3/w3.css">
<body>

<!-- Content will go here -->

</body>
</html>

<!-- Navigation -->
<nav class="w3-bar w3-black">
  <a href="#home" class="w3-button w3-bar-item">Home</a>
  <a href="#band" class="w3-button w3-bar-item">Band</a>
  <a href="#tour" class="w3-button w3-bar-item">Tour</a>
  <a href="#contact" class="w3-button w3-bar-item">Contact</a>
</nav>
// Automatic Slideshow - change image every 3 seconds<br>var myIndex = 0;<br>carousel();
function carousel() {<br>  var i;<br>  var x = document.getElementsByClassName("mySlides");<br>  for (i = 0; i < x.length; i++) {<br>    x[i].style.display = "none";<br>  }<br>  myIndex++;<br>  if (myIndex > x.length) {myIndex = 1}<br>  x[myIndex-1].style.display = "block";<br>  setTimeout(carousel, 3000);<br>}
JOIN OUR NEWSLETTER
And get notified everytime we publish a new blog post.