-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
61 lines (56 loc) · 1.61 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!Doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes, minimum-scale=1">
<link rel="stylesheet" href="css/style.css">
<script defer src="js/fn.js"></script>
</head>
<body>
<div class='header' align='center'>
<div> <b>Mp3Tagger</b></div>
</div>
<div class='content' id="ct">
<div class="content-cont" align="center">
<form action="javascript:void(0)" onsubmit="file()">
<label for="voiceTag"> Voice Tag </label>
<br><br>
<input accept="audio/*" type="file"
onchange = "" id="voiceTag"/>
<br><br>
<label for="musicFile"> Music File </label>
<br><br>
<input accept="audio/*" type="file"
onchange = "" id="musicFile"/>
<br><br>
<label for="taglocation">Tag Location </label>
<br>
<select id="taglocation">
<option value="Beginning"> Beginning </option>
<option value="Ending"> Ending </option>
<option value="Both"> Both </option>
</select>
<br><br>
<div class="filename tb">
<div class="tr">
<input class="td" type="text" id="filename" align="left" placeholder="Filename">
<div class="td" align='right'>
.mp3
</div>
</div>
</div>
<br><br>
<input type="submit" value="submit">
</form>
<img class="downloadbtn" src="img/images.png">
<a id="dLink" href="" style="display: none"></a>
</div>
<!-- <br> -->
</div>
<div class='footer' align='center'>
<audio id="audio" controls>
</audio>
</div>
</body>
</html>