-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
29 lines (25 loc) · 988 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
<!DOCTYPE html>
<html lang="en" >
<!-- Invisible things... -->
<meta charset="UTF-8">
<title>Web MIDI Transport to BLE-MIDI</title>
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed|Roboto+Slab&display=swap" rel="stylesheet">
<head>
<!-- Stylesheet-->
<link rel="stylesheet" type="text/css" href="midistyle.css">
</head>
<body>
<div class="window">
<!-- Main Content-->
<div class="briefer">
<h1>Web BLE MIDI</h1>
<p class="info">To use web MIDI in combination to web Bluetooth, you need to enable Bluetooth on your device. GPS might be needed for security reasons.</p>
<p class="sidenote">This web application is only known to be supported by Chrome, Samsung, Opera and Android browser. Safari is not officially supported. </p>
</div>
<div class="indexbtn">
<a href="./multirx.html" class="rxbutton">MIDI Rx</a>
<a href="./multitx.html" class="txbutton">MIDI Tx</a>
</div>
</div>
</body>
</html>