-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 950 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Spoiler alert!!!</title>
<style>
.hiddendiv{
display:none;
}
.clicker:focus + .hiddendiv{
display:block;
}
</style>
</head>
<body>
<div>
<p> You can easily find on Google information that: </p>
<ul>
<li>Google is pushing a leftist intersectionality agenda with search results.</li>
<li>According to Google's algorithm, white women are happy with black men.</li>
<li>Google is run by jewish supremacists who are doing
everything in their power to further the White genocide agenda.</li>
</ul>
<div class="clicker" tabindex="1">Click for spoiler!!!</div>
<div class="hiddendiv">
<h2>Google's algorithm does NOT want to exterminate white people :)</h2>
</div>
</div>
</body>
</html>