Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
We'll get started as usual by setting up our basic HTML file and associated files and folders, just like we did in Chapter 1,Designer, Meet jQuery.
<div class="jcarousel-skin-slider"> <ul id="featured-carousel"> <li> <a href="#"><img src="images/600/Switzerland.jpg" alt="Switzerland"/></a> <div class="info"> <h4>Switzerland</h4> <p>Switzerland, officially the Swiss Confederation, is a federal republic consisting of 26 cantons, with Bern as the seat of the federal authorities</p> </div> </li> <li> <a href="#"><img src="images/600/CostaRica.jpg" alt="Costa Rica"/></a> <div class="info"> <h4>Costa Rica</h4> <p>Costa Rica, officially the Republic of Costa Rica, is a country in Central America, bordered by Nicaragua to the north, Panama to the south, the Pacific Ocean to the west and south and the Caribbean Sea to the east.</p> </div> </li> ... </ul> </div>
I have 12 items in total on my list, each marked up just the way you see here. Note
that I've wrapped my list in a div with the class jcarousel-skin-slider. We'll
be using this class to style our list with CSS.