26 lines
No EOL
765 B
HTML
26 lines
No EOL
765 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>The Myrtle Tree</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<main class="wrapper">
|
|
<button class="centre">Click to begin</button>
|
|
<section class="controls">
|
|
<button id="play" onclick="playAudio()">Play</button>
|
|
<button id="pause" onclick="pauseAudio()">Pause</button>
|
|
<button id="stop" onclick="stopAudio()">Stop</button>
|
|
<audio id="backgroundAudio" src="public/audio/roli.webm" type="audio/webm">
|
|
</section>
|
|
<footer>
|
|
<p>The Myrtle Tree - A game about sound and reliving memories.</p>
|
|
<p>By Rory Healy.</p>
|
|
</footer>
|
|
</main>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
|
|
</html> |