ccdp10003-project01/index.html

32 lines
1.1 KiB
HTML
Raw Normal View History

2023-04-18 01:40:26 +10:00
<!DOCTYPE html>
<html>
<head>
<title>The Myrtle Tree</title>
<link rel="stylesheet" href="styles.css">
2023-04-18 03:33:53 +10:00
<link rel="icon" href="/favicon.ico" type="image/x-icon">
2023-04-18 01:40:26 +10:00
</head>
<body>
<main class="wrapper">
2023-04-18 03:33:53 +10:00
<section class="centre">
<button id="button" onclick="begin()">Click to begin</button>
2023-04-18 01:40:26 +10:00
</section>
<footer>
2023-04-18 03:33:53 +10:00
<p id="title">The Myrtle Tree - A game about sound and reliving memories.</p>
<section class="controls">
<button id="playPause" class="controlButton" onclick="playPauseAudio()">
<img class="controlImage" src="public/images/play.svg" alt="play"></img>
</button>
<button id="stop" class="controlButton" onclick="stopAudio()">
<img class="controlImage" src="public/images/stop.svg" alt="stop"></img>
</button>
<audio id="backgroundAudio" src="public/audio/roli.weba" type="audio/weba">
</section>
<p id="credits">By Rory Healy.</p>
2023-04-18 01:40:26 +10:00
</footer>
</main>
<script src="main.js"></script>
</body>
</html>