-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.7 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.7 KB
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>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/tablet.css">
<link rel="stylesheet" href="css/laptop.css">
<title>Lyrics File Maker | Create .LRC Files for Music Player Apps</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Easily create synced .lrc files for your favourite songs. Prefect for music player apps like Musicolet, Poweramp, and more. Free and simple tool.">
<link href="https://fonts.cdnfonts.com/css/leoscar" rel="stylesheet">
</head>
<body>
<audio id="aud" preload="auto"></audio>
<h1>Lyrics File Maker</h1>
<h3>Your .lrc file maker</h3>
<a href="https://github.com/LibraAkaja/Lyrics-File-Maker" target="_blank" rel="noopener noreferrer">
<div class="iconContainer" id="iconContainer1" title="Info">i</div>
</a>
<br><br>
<div id="inputContainer" class="inputContainer">
<input type="file" id="a" class="hidden">
<div class="input">
Choose Audio
<div class="iconContainer" id="iconContainer2">
<img src="Assets/attach.svg" width="20">
</div>
</div>
</div>
<div class="playerContainer">
<div class="player">
<div id="ppIcon" class="ppIcon"></div>
<div id="fileName">No File Chosen</div>
</div>
</div>
<script src="scripts/main.js" type="module"></script>
<script src="scripts/dynamicComponents.js" type="module"></script>
<script src="scripts/timer.js" type="module"></script>
<script src="scripts/highlighter.js" type="module"></script>
</body>
</html>