-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (43 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<title>Remake Tool - Vangson.info</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="img/favicon.png">
<link rel="stylesheet" href="lib/bulma/css/bulma-rtl.min.css">
<link rel="stylesheet" href="lib/toastr/build/toastr.min.css">
<link rel="stylesheet" href="custom/style.css">
<script src="lib/fontawesome/js/all.min.js"></script>
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/voca/dist/voca.min.js"></script>
<script src="lib/toastr/build/toastr.min.js"></script>
<script src="custom/script.js"></script>
</head>
<body>
<div class="container is-widescreen">
<h5 class="title is-5 mt-4">
REMAKE TOOL FOR <span class="has-text-info">VANGSON.INFO</span>
</h5>
<div class="columns is-desktop">
<div class="column is-6">
<textarea id="input-lyric" class="textarea" placeholder="Input: Editable" rows="20"></textarea>
</div>
<div class="column is-1">
<button id="btn-copy" class="button is-success mb-3">
<i class="fa-regular fa-copy"></i>
</button><br>
<button id="btn-clear" class="button is-danger mb-3">
<i class="fa-solid fa-eraser"></i>
</button><br>
<input id="sync-chk" type="checkbox" checked> Sync
</div>
<div class="column is-5">
<textarea id="output-lyric" class="textarea" placeholder="Output: Read-only" rows="20" readonly></textarea>
</div>
</div>
<div>
<small>© 2023 by <b>DuyNLK</b></small>
</div>
</div>
</body>
</html>