-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·49 lines (48 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="author" content="Kean Duque" />
<meta name="generator" content="KeanMind" />
<title>Kean Duque Slider - Component</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" />
<link rel="stylesheet" href="public/css/style.css" />
</head>
<body>
<div class="note up">
!!Please read the Notes on README.md file to know more about this
Slider. - KeanDuque
</div>
<h2 class="section-title-mobile">
Complete your<br />
dog look
</h2>
<h2 class="section-title-desktop">You might find those interesting</h2>
<section class="section-slider">
<div class="slider-container">
<div class="slider-content">
<div class="slider-wrapper"></div>
</div>
<div class="scroll-container">
<div class="scroll-bar">
<div class="scroll-inner-bar"></div>
</div>
</div>
</div>
<div class="controls">
<button class="slider__btn slider__btn--left">
<img src="public/img/arrowLeft.png" />
</button>
<button class="slider__btn slider__btn--right">
<img src="public/img/arrowLeft.png" />
</button>
</div>
</section>
<script type="module" src="script.js"></script>
</body>
</html>