-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHtmlPage.html
50 lines (28 loc) · 889 Bytes
/
HtmlPage.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link href="styles/StyleSheet.css" rel="stylesheet" />
<script src="scripts/sound.js"></script>
<script>
var music;
function playOpenningMusic() {
if (!music) {
music = new sound('sounds/openning.mp3');
music.play();
document.getElementById('sound-message').style.display = 'none';
}
}
</script>
</head>
<body>
<div class="container">
<div id="sound-message"><a href="javascript:void(0)" onclick="playOpenningMusic()">Click here to music.</a></div>
<div class="buttons-list">
<div>
<input type="button" value="Start Game" onclick="window.location.href='startgame.html'" />
</div>
</div>
</div>
</body>
</html>