-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.63 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>EPS</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="eps">
<div id="lcd">
<div class="midi in">
<div>
<select id="midiIn">
<option disabled selected>MIDI In</option>
</select>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="m12.75 15 3-3m0 0-3-3m3 3h-7.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" /></svg>
</div>
</div>
<div class="midi out">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="m12.75 15 3-3m0 0-3-3m3 3h-7.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" /></svg>
<select id="midiOut">
<option disabled selected>MIDI Out</option>
</select>
</div>
</div>
<div class="tags">
<div class="tag">MIDI IN</div>
<div class="tag">MIDI OUT</div>
</div>
<div class="text">LOADING SYSTEM</div>
</div>
<div id="logs">
<div class="in"></div>
<div class="out"></div>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>