-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
50 lines (37 loc) · 1.44 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Yo-kai Watch Somen Spirits</title>
<link href="./css/style.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body onload="hidePad()">
<style>
@font-face {
font-family: ykw;
src: url('./ChangaOne-Regular.ttf');
}
body {
background-image: url('./images/home/beach1.jpg');
background-repeat: no-repeat;
background-position: center;
}
</style>
<img src = "./images/dialogPortraits/hime.png" id = "dialogPortrait">
<img src = "./images/dialog.png" id = "dialogBG">
<p id = "dialogName">Tokonatsu Hime</p>
<p id = "dialogText">Welcome welcome! What would you like to do?</p>
<input id="battleButton" type="image" src="./images/home/battleIcon.png" onclick="switchBattle()">
<input id="teambuilderButton" type="image" src="./images/home/medalsIcon.png" onclick="switchTeambuilder()">
<input id = "toggleMusic" type = "image" src = "./images/musicON.png" onclick = "toggleMusic()">
<audio id = "bgm" src = ""></audio>
<audio id = "beachSFX" src = "./audios/BeachBG.mp3"></audio>
<div id = "startMenu" onclick = "startGame()">
<p id = "startText">Click anywhere to play!</p>
</div>
<img src = "./images/padTrans.png" id = "padTrans">
<script src="./scripts/script.js"></script>
</body>
</html>