В приведенном ниже html я хочу ввести слайдеры, но я не могу этого сделать. Я хочу сдвинуть слайд-1 влево, чтобы слайд-2 был виден.Как этого добиться?
Ниже приведен пример изображения: Здесь, на рисунке для получения информации о стрелках, мне нужны только эти 3 круга.
<!DOCTYPE html>
<html>
<head>
<style>
.slide-1{
font-family: "Quicksand";
}
.slide-2{
font-family: "Quicksand";
}
</style>
</head>
<body>
<div>
<div class="slide-1">
<p text-wrap>This is the slide 1 content</p>
</div>
<div class="slide-2">
<p text-wrap>This is slide 2 content.And this will only be visible when user touch and side to the left of slide-1.How is this possible?</p></div>
</div>
</body>
</html>