-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcarousel.html
33 lines (27 loc) · 926 Bytes
/
carousel.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
<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">
<!-- My style Sheet -->
<link rel="stylesheet" href="assets/css/carousel.css">
<title>Dance Dance</title>
</head>
<body>
<!-- This page allows the selection of a song,
each song has a difficulty which is determined
by the BPM of the song. Carousel shows the
single cover of the song, artist and difficulty. -->
<h1>Carousel</h1>
<!-- Carousel to pick Song Songx\s -->
<div class="container">
<div class="carousel">
</div>
</div>
<!-- ./Carousel to pick Song Songx\s -->
<button class="next">Next</button>
<button class="prev">Prev</button>
<script src="assets/js/data.js"></script>
<script src="assets/js/carousel.js"></script>
</body>
</html>