-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (51 loc) · 1.53 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
<!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" />
<title>Carousel</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<section class="carousel">
<button class="carousel__button button--prev" hidden>
<svg id="left" viewBox="0 0 54 69.007">
<path d="M47 0L3.44 34.502 47 69.007z" />
</svg>
</button>
<div class="carousel__contents-container">
<ul class="carousel__contents">
<li class="carousel__slide">
<a href="#">
<img src="images/image1.jpg" alt="" />
</a>
</li>
<li class="carousel__slide">
<a href="#">
<img src="images/image2.jpg" alt="" />
</a>
</li>
<li class="carousel__slide">
<a href="#">
<img src="images/image3.jpg" alt="" />
</a>
</li>
</ul>
</div>
<button class="carousel__button button--next">
<svg viewBox="0 0 54 69.007">
<path d="M5-.121l43.56 34.502L5 68.886z" />
</svg>
</button>
<div class="carousel__dots">
<button class="carousel__dot is-selected"></button>
<button class="carousel__dot"></button>
<button class="carousel__dot"></button>
</div>
</section>
<script src="js/main.js"></script>
</body>
</html>