-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainmenu.html
More file actions
24 lines (23 loc) · 904 Bytes
/
mainmenu.html
File metadata and controls
24 lines (23 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title> Filthy Phil - Main Menu </title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="../Css/mainmenu.css">
<script type="text/javascript" src="../Javascript/mainmenu.js"></script>
</head>
<body>
<nav>
<audio src="../Assets/The-Ant-Hill-Gang-Goes-West.mp3" loop="true">
Your browser does not support the audio element.
</audio>
<audio src="../Assets/mouseover.wav">
Your browser does not support the audio element.
</audio>
<button id="playBtn" onmouseover="mouseoverplay()"><img src="../Assets/playbutton.png"></button>
<button id="optionsBtn" onmouseover="mouseoverplay()" ><img src="../Assets/optionsbutton.png"></button>
<button id="rankingBtn" onmouseover="mouseoverplay()" ><img src="../Assets/rankingbutton.png"></button>
<img id="logo" src="../Assets/logo.png">
</nav>
</body>
</html>