-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (50 loc) · 1.93 KB
/
index.html
File metadata and controls
56 lines (50 loc) · 1.93 KB
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>Brainrot Web Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<ul>
<li><a href="#origin">Origin</a></li>
<li><a href="#dictionary">Dictionary</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#quiz">Quiz</a></li>
</ul>
</nav>
<h1>This is a website dedicated to Skibidi Toilet</h1>
<img src="imgs/download.jpg" alt="Skibidi">
<div id="origin">
<h2>Origin of Skibidi Toilet</h2>
<p>
Skibidi Toilet originated from a YouTube series by DaFuq!?Boom! in 2023. It features humanoid toilets battling characters with cameras,
speakers, and TVs for heads. The name comes from the song "Dom Dom Yes Yes" by Biser King. The series went viral due to its absurd humor,
fast action, and bizarre animation, spreading across YouTube Shorts and TikTok. Over time, it evolved with deeper lore and better CGI,
becoming a major internet meme and cultural phenomenon.
</p>
</div>
<div id="dictionary">
<h2>Skibidi Dictionary</h2>
<ul>
<li><b>Skibidi:</b>A toilet with a head</li>
<li><b>Gooner:</b> Someone who rubs one.</li>
<li><b>Huzz:</b> Women</li>
<li><b>Bruzz:</b> Men</li>
<li><b>Fine Shyt:</b> Beautiful girls</li>
<h4>ETC</h6>
</ul>
</div>
<div id="quiz">
<h2>Is this Skibidi or Not?</h2>
<p>Skibidi Toilets were created in 2019.</p>
<button onclick="checkAnswer(false)">True</button>
<button onclick="checkAnswer(true)">False</button>
<p id="result"></p>
</div>
<script src="script.js"></script>
<footer>Proudly Produced by Ethan Mutsvairo </footer>
</body>
</html>