-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Audio Metadata Viewer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<div class="header-content">
<div class="logo">
<h1>Audio Metadata Viewer</h1>
<p class="tagline">Modern Audio File Metadata Inspector</p>
</div>
<a href="https://github.com/imjyotiraditya/amv" target="_blank" rel="noopener noreferrer"
class="github-button">
View on GitHub
</a>
</div>
</header>
<div class="main-layout">
<div class="container">
<div class="controls">
<button id="copyBtn" class="btn-default">Copy Output</button>
<button id="katbinBtn" class="btn-default">Copy to Katbin</button>
</div>
<div id="dropZone" class="file-zone">
<input type="file" id="fileInput" accept="audio/*" class="hidden">
</div>
<div id="output" class="output-container">No file loaded</div>
</div>
</div>
<footer class="footer">
Made by <a href="https://github.com/imjyotiraditya" target="_blank" rel="noopener noreferrer">Jyotiraditya
Panda</a>
</footer>
<script src="amv.js"></script>
</body>
</html>