In: Computer Science
2. HTML/CSS/JavaScript
Under 'project’ create a subdirectory titled ‘travelsite’.
Create a slide show for a travel and tourism company. Use between 8 and 12 pictures that will automatically change every 1 to 3 seconds. You may use the pictures from Assignment 1 and add more to the collection. The slide show will have the following features:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>travelog</title>
<style>
.sldr{display:none;}
</style>
</head>
<body>
<header>
<div>
<div
style="float: left">LOGO</div>
<div
style="text-shadow:#cccccc 10px 5px; float: left">Company
Name</div>
</div>
</header>
<section>
<div>
<div
class="fade sldr">
<img src="" />
<div>Caption text</div>
</div>
<div
class="fade sldr">
<img src="" />
<div>Caption text</div>
</div>
<div
class="fade sldr">
<img src="" />
<div>Caption text</div>
</div>
<div
class="fade sldr">
<img src="" />
<div>Caption text</div>
</div>
<div
class="fade sldr">
<img src="" />
<div>Caption text</div>
</div>
<div
class="fade sldr">
<img src="" />
<div>Caption text</div>
</div>
<div
class="fade sldr">
<img src="" />
<div>Caption text</div>
</div>
<div
class="fade sldr">
<img src="" />
<div>Caption text</div>
</div>
</div>
</section>
<footer>
<div>
<div>Address:</div>
<div>Contact us:</div>
</div>
</footer>
</body>
</html>