-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (32 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pato</title>
<link href="style/styles.css" rel="stylesheet" />
<link rel="shortcut icon" href="files/favicon.ico" type="image/x-icon" />
</head>
<header>
<div class="container">
<div class="neon" onclick="changeDuck()">PATO</div>
</div>
</header>
<body>
<div id="pato">
<img src="files/pato.gif" id="pato-gif" alt="pato" onclick="quack()" />
</div>
<footer>
<a href="https://ramxn.dev/" target="_blank">© 2024 Duck Corp. </a>
</footer>
<script src="js/autoPlayMusic.js"></script>
<script src="js/changeDuck.js"></script>
<script src="js/quack.js"></script>
<!--
𝙳𝚎𝚟𝚎𝚕𝚘𝚙𝚎𝚍 𝚋𝚢
█▀█ ▄▀█ █▀▄▀█ █▀█ █▄ █ █▀█ █▄ █ █▀▀
█▀▄ █▀█ █ ▀ █ █▄█ █ ▀█ ▄ █▄█ █ ▀█ ██▄
-->
</body>
</html>