-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Midi Birds</title>
<meta name="description" content="A midi based bird interface">
<meta name="author" content="Tony Edwards">
<link rel="stylesheet" href="css/normalise.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body class="demo">
<header>
<h1>Pick a Bird. Any Bird</h1>
<nav>
<ul>
<li><a href="index.html">Demo 0</a></li>
<li><a href="demo-1.html">Demo 1</a></li>
<li><a href="demo-2.html">Demo 2</a></li>
</ul>
</nav>
<button>I do nothing</button>
<p>Participation Level: <span id="participation-level"></span>/10</p>
</header>
<main>
<div id="bird-data">
<h2 id="bird-name"></h2>
<h3 id="sightings"></h3>
<p id="image-credit"></p>
<p id="audio-credit"></p>
</div>
<div id="bird-image-container"></div>
</main>
<script src="js/bird.js"></script>
<script src="js/audience.js"></script>
<script src="js/midi.js"></script>
<script src="js/setup/index.js"></script>
</body>
</html>