-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·44 lines (42 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="icon" href="./assets/images/favicon.ico" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css?family=Rubik:400,500,700" rel="stylesheet" />
<link rel="stylesheet" href="./assets/styles/style.css" />
<title>Drop The Beat</title>
</head>
<body>
<div class="container">
<div class="introduction">
<h1>DROP THE BEAT</h1>
<p style="text-align: center">
Drag & Drop any music element in the "Drop Zone" <br />and create your unique song!
</p>
</div>
<div class="drop-container">
<div class="audio-ux">For a better experience, use your headphones.</div>
<div class="drop-zone"></div>
<div class="lights-on">Lights on</div>
<div class="refresh-button">Reset</div>
</div>
<div class="base-container">
<div class="labels">
<span class="label label-techno">TECHNO</span>
<span class="label label-latino">LATINO</span>
<span class="label label-rock">ROCK</span>
</div>
<div class="base-zone"></div>
</div>
<div class="browser-notice"></div>
</div>
<script src="scripts/constants.js"></script>
<script src="scripts/constructors.js"></script>
<script src="scripts/drag.js"></script>
<script src="scripts/sound.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>