-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.32 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="subkers.svg">
<link rel="mask-icon" href="subkers.svg" color="#01D7B0">
<link rel="apple-touch-icon" href="subkers180x180.png">
<meta name="theme-color" content="#01D7B0">
<title>Subkers</title>
<meta name="description" content="Tool for converting subtitles into markers for Adobe Audition">
<meta name="keywords" content="Audition, Subtitles, SRT, Markers">
<meta name="author" content="Anton Zavodchikov">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div class="container">
<div class="application">
<div class="header">
<img class="logo" src="/subkers.svg" alt="Subkers Logo" />
<h1 class="title">Subkers</h1>
</div>
<p class="info">Tool for converting subtitles into markers for Adobe Audition</p>
<div class="convert-container">
<label id="convert-button" for="file-input">
<span>Convert</span>
</label>
<input id="file-input" type="file" accept=".srt, .ass, .ssa" style="display: none" />
</div>
</div>
<div class="footer">
<span>Made by</span>
<a href="https://teris.dev/">Anton Zavodchikov</a>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>