-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 1.82 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
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>rockPaperScissor</title>
<link rel="icon" type="image/x-icon" href="./images/l.ico">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="load_screen">
<div id="loading"></div>
<div id="loading2">loading.....</div>
</div>
<div id="header">
<div>
<img src="images/logo.png" alt="logo">
</div>
<div>
<a >credits:</a>
<a href="https://sutemo.itch.io/female-character" target="_blank">|art</a>
<a href="https://befonts.com/super-comic-font.html" target="_blank">|font</a>
<a href="https://youtu.be/G-FGiICah8Q?si=qDAczG-7DLlRlumN" target="_blank">|music</a>
<a href="https://www.myinstants.com/en/search/?name=waifu" target="_blank">|sounds</a>
<button id="misic-ctl" onclick="checkBgMusic()">musicON</button>
</div>
</div>
<div id="girl"></div>
<div id="prompt"></div>
<div class="footer">
Copyright © AAA_Studio 2025
</div>
<audio id="myAudio" loop>
<source src="sounds/bg.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="ah">
<source src="sounds/ah.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="giggle">
<source src="sounds/giggle.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="beep">
<source src="sounds/beep.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<script src="main.js"></script>
</body>
</html>