63 lines
2.2 KiB
HTML
Executable file
63 lines
2.2 KiB
HTML
Executable file
<!doctype html>
|
|
<html class="no-js" lang="">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title>My Soundboard</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="styles/vendor/normalize.css">
|
|
<link rel="stylesheet" href="styles/vendor/font-awesome.min.css">
|
|
<link rel="stylesheet" href="styles/app.css">
|
|
</head>
|
|
<body>
|
|
<h1><i class="fa fa-headphones fa-lg"></i> My Soundboard</h1>
|
|
|
|
<hr />
|
|
|
|
<button id="stopAll">
|
|
<i class="fa fa-stop fa-lg"></i> Stop All
|
|
</button>
|
|
|
|
<h2><i class="fa fa-music fa-lg"></i> Music</h2>
|
|
|
|
<div class="sounds play">
|
|
<button class="play"><i class="fa fa-play fa-lg"></i></button>
|
|
<button class="pause"><i class="fa fa-pause fa-lg"></i></button>
|
|
|
|
<h3>Classical</h3>
|
|
|
|
<audio src="sounds/music/corta_jaca_tango.mp3"></audio>
|
|
<audio src="sounds/music/scott_joplin_kismet_rag.mp3"></audio>
|
|
<audio src="sounds/music/scott_joplin_the_nonparell.mp3"></audio>
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<h2><i class="fa fa-file-audio-o fa-lg"></i> Sound Effects</h2>
|
|
|
|
<div class="sounds play">
|
|
<button class="play"><i class="fa fa-play fa-lg"></i></button>
|
|
<button class="pause"><i class="fa fa-pause fa-lg"></i></button>
|
|
|
|
<h3>Crickets</h3>
|
|
|
|
<audio src="sounds/effects/lisa_redfern_crickets.mp3"></audio>
|
|
</div>
|
|
|
|
<div class="sounds play">
|
|
<button class="play"><i class="fa fa-play fa-lg"></i></button>
|
|
<button class="pause"><i class="fa fa-pause fa-lg"></i></button>
|
|
|
|
<h3>Evil Laugh</h3>
|
|
|
|
<audio src="sounds/effects/himan_evil_laugh1.mp3"></audio>
|
|
<audio src="sounds/effects/himan_evil_laugh2.mp3"></audio>
|
|
<audio src="sounds/effects/evil_laugh_3.mp3"></audio>
|
|
</div>
|
|
|
|
<script src="scripts/vendor/jquery-2.1.4.min.js"></script>
|
|
<script src="scripts/app.js"></script>
|
|
</body>
|
|
</html>
|