-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
31 lines (29 loc) · 1.05 KB
/
main.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
<html>
<head>
<!-- <title>Musescore</title> -->
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<h1>ScoreSnap</h1>
<h3>A tool for obtaining PDFs of scores, without spending your entire life savings!</h3>
<div>
<h2 background="#ff0000"id="msg"></h2>
<div class="controls">
<div class="button-group">
<button id="button" class="btn primary">Grab score (PDF)</button>
<select id="pdfQuality" class="dropdown">
<option value="2448 3168">High Quality (Slow)</option>
<option value="1224 1584">Med Quality</option>
<option value="612 792">Low Quality (Fast)</option>
</select>
</div>
<button id="midi" class="btn secondary">Grab MIDI</button>
<button id="audio" class="btn secondary">Grab audio (MP3)</button>
<button id="mcxz" class="btn disabled" disabled>Grab score (COMING SOON)</button>
</div>
</div>
</div>
<script src = "script.js"></script>
</body>
</html>