forked from SyntaxError52/rizz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (44 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="themes/dark.css" id="theme-stylesheet">
<link rel="shortcut icon" href="https://www.dictionary.com/e/wp-content/uploads/2018/09/smirking-face.png " type="image/x-icon">
<title>RandomRizz</title>
<script>
window.onload = function() {
var x = document.getElementById("toast");
x.className = "show";
setTimeout(function(){ x.className = x.className.replace("show", ""); }, 6000);
};
</script>
</head>
<body>
<div id="toast">
<img src="volume.svg" alt="">
This website contains sounds. Please turn up your volume.
</div>
<center>
<h1 style="margin-bottom: -10px; font-size: 50px;">RandomRizz</h1>
<p>Your free rizzler companion.</p>
<button class="switcher" onclick="changeTheme('themes/light.css')">Light Mode</button> <button class="switcher" onclick="changeTheme('themes/dark.css')">Dark Mode</button>
<p style="color: transparent; font-size: 5px;">hello!</p>
<hr>
<br>
</center>
<center>
<h1 id="randomrizz">Rizz will appear here!</h1>
</center>
<br><br>
<center>
<button onclick="randomRizzler()" id="audio" style="margin-top: -30px; scale: 115%;" class="button-big">Random Rizz</button>
</center>
<br><br><br>
<div class="madebycobblesteve">Made by <a href="https://cobblesteve01.github.io">cobblesteve01</a>, <a href="https://syntaxerror52.github.io">SyntaxError52</a>, and <a href="https://github.com/SprintingSnail69">SprintingSnail69</a></div>
<br>
<audio src="audio/rizz.mp3" id="rizzsound"></audio>
<audio src="audio/hitmarker.mp3" id="keydown"></audio>
<script src="main.js"></script>
</body>
</html>