av/cmd/audio-player/index.html

22 lines
680 B
HTML
Raw Normal View History

2019-07-18 06:41:52 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Audio Player</title>
<script type="text/javascript" src="pcm-player.min.js"></script>
<script type="text/javascript" src="main.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="jumbotron">
<div class="container-fluid">
<input type="file" id="input">
2019-07-18 06:41:52 +03:00
</div>
</div>
</body>
2019-07-18 06:41:52 +03:00
</html>