forked from grantjames/metronome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Metronome</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="title">Simple Metronome</div>
<button id="play-button" class="">
<div id="play-pause-icon" class="play"></div>
</button>
<div class="tempo-controls">
<button class="tempo-change" data-change="-5">-5</button>
<button class="tempo-change" data-change="-1">-</button>
<div class="tempo-container">
<div id="tempo">120</div>
<div class="bpm">bpm</div>
</div>
<button class="tempo-change" data-change="+1">+</button>
<button class="tempo-change" data-change="+5">+5</button>
</div>
<div class="created-by">
Created by <a href="https://grantjam.es" target="_blank">Grant James</a>
</div>
<script src="metronome.js"></script>
<script src="app.js"></script>
</body>
</html>