So here’s how to build your slider.
Download the plugin from here: https://github.com/kenwheeler/slick/archive/master.zip
Extract the files to your computer. This should give you a folder called slick-master.
If you open this folder, you will see a second folder called “slick”.
Copy this to your desktop.
Make a new file on your Desktop. Name it index.html, then copy and paste the following code into it:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</body>
</html>
The line at the bottom will fetch the jQuery library from Google’s CDN. Here we are loading version 1.9.1
Now we need to include the assets that come with slick.
We need to add slick.css to the <head> part of our page and add slick.js before the closing <body> tag, after the jQuery library.
This gives us:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
</head>
<body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
</body>
</html>
Ok, now for the slider.
Let’s add the suggested markup to the page and initialize the slider:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
</head>
<body>
<div class="your-class">
<div>your content</div>
<div>your content</div>
<div>your content</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script>
$(document).ready(function(){
$('.your-class').slick({
//setting-name: setting-value
});
});
</script>
</body>
</html>
This will give us a working slider, but one which doesn’t do much.
Let’s change “your-class” into something sensible, then add some more slides, as well as some styles:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<style>
body{
background-color: #3498d8;
}
.slider{
background-color: white;
margin: 50px auto;
width: 900px;
height: 500px;
}
div{
height: 100%;
}
h3 {
color: #3498d8;
font-size: 50px;
position: relative;
top: 35%;
left: 50%;
}
</style>
</head>
<body>
<div class="slider">
<div><h3>1</h3></div>
<div><h3>2</h3></div>
<div><h3>3</h3></div>
<div><h3>4</h3></div>
<div><h3>5</h3></div>
<div><h3>6</h3></div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script>
$(document).ready(function(){
$('.slider').slick({
//setting-name: setting-value
});
});
</script>
</body>
</html>
If you run this, then things will be looking a lot better.
Notice the arrows on the left and right of the slider to navigate.
You can also swipe between the slides on a touch device, or drag them from left to right with your mouse.
Now, you’re wanting to make a slide show of some products, so let’s initialize the slider with some options and adjust the CSS:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<style>
body{
background-color: #3498d8;
}
.slider{
margin: 50px auto;
width: 600px;
}
div{
height: 100%;
}
h3 {
background-color: white;
height: 150px;
width: 150px;
color: #3498d8;
font-size: 50px;
}
</style>
</head>
<body>
<div class="slider">
<div><h3>1</h3></div>
<div><h3>2</h3></div>
<div><h3>3</h3></div>
<div><h3>4</h3></div>
<div><h3>5</h3></div>
<div><h3>6</h3></div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script>
$(document).ready(function(){
$('.slider').slick({
centerMode: true,
centerPadding: '60px',
dots: true,
infinite: true,
speed: 300,
slidesToShow: 3,
slidesToScroll: 1
});
});
</script>
</body>
</html>
Much better!
Now the last thing would be to add some images.
I’ve borrowed one from the site you linked to:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<style>
body{
background-color: #3498d8;
}
.slider{
margin: 50px auto;
width: 600px;
}
div{
height: 100%;
}
p{
text-align: center;
font-size: 12px;
color: white;
}
</style>
</head>
<body>
<div class="slider">
<div>
<img src="http://www.mosso.cl/wp-content/uploads/2013/11/TRG_RELOJ_AA140000222-150x150.png" />
<p>Caption 1</p>
</div>
<div>
<img src="http://www.mosso.cl/wp-content/uploads/2013/11/TRG_RELOJ_AA140000222-150x150.png" />
<p>Caption 2</p>
</div>
<div>
<img src="http://www.mosso.cl/wp-content/uploads/2013/11/TRG_RELOJ_AA140000222-150x150.png" />
<p>Caption 3</p>
</div>
<div>
<img src="http://www.mosso.cl/wp-content/uploads/2013/11/TRG_RELOJ_AA140000222-150x150.png" />
<p>Caption 4</p>
</div>
<div>
<img src="http://www.mosso.cl/wp-content/uploads/2013/11/TRG_RELOJ_AA140000222-150x150.png" />
<p>Caption 5</p>
</div>
<div>
<img src="http://www.mosso.cl/wp-content/uploads/2013/11/TRG_RELOJ_AA140000222-150x150.png" />
<p>Caption 6</p>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script>
$(document).ready(function(){
$('.slider').slick({
centerMode: true,
centerPadding: '60px',
dots: true,
infinite: true,
speed: 300,
slidesToShow: 3,
slidesToScroll: 1
});
});
</script>
</body>
</html>
Job done 
Here’s a demo.
Also, bear in mind that there are plenty of other options for you to try out on slick’s homepage.