-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (78 loc) · 2.68 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JavaScript Modern Slider</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="slider">
<div class="slider__item active">
<div class="slider__img">
<img
src="https://images.unsplash.com/photo-1663086446112-4f44341536b5?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY2NTc3NzM3Ng&ixlib=rb-1.2.1&q=80&w=1080"
alt=""
/>
</div>
<div class="slider__content">
<div class="slider__title">
<h3>Title 1</h3>
</div>
<div class="slider__text">
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quae,
est.
</p>
</div>
<a href="" class="sliderBtn">Learn More</a>
</div>
</div>
<div class="slider__item">
<div class="slider__img">
<img
src=https://images.unsplash.com/photo-1664911979280-59917fb8b290?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY2NTc5MDQ0Nw&ixlib=rb-1.2.1&q=80&w=1080
alt="" />
</div>
<div class="slider__content">
<div class="slider__title">
<h3>Title 2</h3>
</div>
<div class="slider__text">
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quae,
est.
</p>
</div>
<a href="" class="sliderBtn">Learn More</a>
</div>
</div>
<div class="slider__item">
<div class="slider__img">
<img
src=https://images.unsplash.com/photo-1665125143199-a6b44a9e1b21?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTY2NTc5MDQxNw&ixlib=rb-1.2.1&q=80&w=1080
alt="" />
</div>
<div class="slider__content">
<div class="slider__title">
<h3>Title 3</h3>
</div>
<div class="slider__text">
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quae,
est.
</p>
</div>
<a href="" class="sliderBtn">Learn More</a>
</div>
</div>
<div class="pagination-container">
<span class="slider__pagination active"></span>
<span class="slider__pagination"></span>
<span class="slider__pagination"></span>
</div>
</div>
<script src="script.js"></script>
</body>
</html>