-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconspiracy.html
53 lines (49 loc) · 1.12 KB
/
conspiracy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Is Dig "Ben" Duggan married yet?</title>
<meta name="description" content='Is Dig "Ben" Duggan married yet?' />
<meta name="author" content="Colton and Jacobi Productions" />
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: #ccc;
}
}
.content {
display: flex;
align-items: center;
height: 90vh;
width: 99.5vw;
justify-content: center;
}
.status {
font-size: 256px;
line-height: 1;
margin: 0;
text-align: center;
}
.secret {
font-size: 6px;
text-align: center;
}
.footer {
font-size: 10px;
text-align: center;
}
</style>
</head>
<body>
<div class="content">
<div>
<h1 class="status">Yes</h1>
<p class="secret">But actually secretly no</p>
</div>
</div>
<p class="footer">
© Colton and Jacobi Productions, All Rights Reserved, 2020
</p>
</body>
</html>