-
Notifications
You must be signed in to change notification settings - Fork 40
/
index.html
34 lines (29 loc) · 910 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<title>My DHSI Music Encoding Project</title>
<meta charset="utf-8">
<meta name="description" content="My project">
<meta name="author" content="Me">
<link rel="stylesheet" href="css/style.css" media="all" />
<script src="js/verovio-toolkit.js"></script>
<script src="js/utils.js"></script>
</head>
<body>
<div id="content">
<!-- ADD YOUR HTML CONTENT HERE! -->
<h1>My project</h1>
</div>
<!-- **** DO NO EDIT BELOW THIS LINE **** -->
<!-- * **** **** **** **** **** **** **** -->
<div id="controls">
<button id="prev"> < </button>
<button id="next"> > </button>
</div>
<div id="score">
<!-- THIS IS WHERE THE SCORE GOES AUTOMATICALLY -->
</div>
<!-- THIS CALLS THE SCRIPT THAT GETS THE MEI SCORE -->
<script src="js/index.js"></script>
</body>
</html>