-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
26 lines (23 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta property="og:title" content="TheRedEncryption's Taiko Editor">
<meta property="og:type" content="website">
<meta property="og:url" content="https://theredencryption.github.io/tre-taiko-editor/">
<meta property="og:image" content="https://theredencryption.github.io/tre-taiko-editor/icon_rich.png">
<meta property="og:description" content="Create, modify, and export TJA files for use in Taiko emulators!">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Taiko Editor</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="./images/favicon.ico">
<link rel="stylesheet" href="./assets/font/TnT.ttf">
</head>
<body>
<script src="editor.js" defer></script>
<input type="number" style="position:absolute;left:9vw;top:21vh;width:6vw " min = "1" max = "999" step = "1" value = "100" id = "bpm"/>
<input type="file" style="position:absolute;right:1vw;top:21vh" id="song_file" accept=".wav,.ogg,.mp3"/>
<button type="button" style = "position:absolute;right:1vw;bottom:1vh" id="export">Export & Download</button>
</body>
</html>