-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
86 lines (82 loc) · 4.36 KB
/
Copy path404.html
File metadata and controls
86 lines (82 loc) · 4.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<link href="/style/fonts/Minecraft/MinecraftSeven.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/style/style.min.css">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<title>Let's see here... - The KiCK Catalog</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#72ff8e">
</head>
<body>
<div id="sidebar">
<div id="sidebarContent">
<a id="profilePicLink" href="https://github.com/kckarnige" target="_blank">
<img id="profilePic" width="64px" src="/res/notburgerking.jpg">
</a>
<a id="sidebarNav" href="/">Home</a>
<a id="sidebarNav" href="/projects">Projects</a>
<a id="sidebarNav" href="/portfolio">Portfolio</a>
<a id="sidebarNav" href="https://kckarnige.carrd.co/" target="_blank">Socials</a>
<a id="sidebarNav" href="https://github.com/kckarnige/kckarnige.github.io/#readme" target="_blank">Sources</a>
<div id="sidebarNotice">
<p>© Robert E. Reyes</p>
</div>
</div>
</div>
<div id="main">
<div id="topbar">
<div id="topbarContent">
<div id="warmWelcome">
<div id="warmSplashText">
<p id="warmSplashTextContent">...</p>
</div>
<p id="affiliationNotice"></p>
</div>
</div>
</div>
<div id="mainContent">
<p id="label">Wanna know what does exist though?</p>
<img id="huh" src="" />
</div>
</div>
<script src="/script/main.min.js"></script>
<script src="/script/redirects.js"></script>
<script>
function randomImage() {
var images = [
"https://media.tenor.com/2h9xhpYLKooAAAAj/furro.gif",
"https://kckarnige.github.io/res/fug-igg/scitt.jpg",
"https://kckarnige.github.io/res/fastfetchingit.png",
"https://media.tenor.com/PFeI000LYHkAAAAM/boy-kisser-boykisser.gif",
"https://media.tenor.com/ACY4lDcW4DEAAAAM/chipichipi-boykisser-boykisser.gif",
"https://media.tenor.com/VN2Z6qUWw2YAAAAM/boy-kisser-silly-cat.gif",
"https://media.tenor.com/ckcRbRDEmN8AAAAM/smooth-brain-kitty.gif",
"https://media.tenor.com/AZJNhEZ49E4AAAAi/sheldon-holding-laptop-speech-bubble.gif",
"https://media1.tenor.com/m/u-LtBkF8BKcAAAAC/john-egbert-dance.gif",
"https://media1.tenor.com/m/SHBkzxUTp-cAAAAC/alexfromdenmark-alex.gif",
"https://media.tenor.com/QmnN8srTO-wAAAAi/chainsaw-man-pochita.gif",
"https://media.tenor.com/xYW_4swB4-8AAAAM/boykisser.gif",
"https://media.tenor.com/VKMce1vb-loAAAAM/crime-dog-crime.gif",
"https://media.tenor.com/qYpm6fVLlNIAAAAj/mauzymice-mauzy.gif",
"https://media.tenor.com/J-KneBmXxQ4AAAAM/hate-crime-love-crime.gif",
"https://media.tenor.com/ng8zlnL4GgUAAAAM/vehicular-manslaughter-tf2.gif",
"https://media1.tenor.com/m/6FgwZgQdTdoAAAAC/minecraft.gif",
"https://media1.tenor.com/m/-aHv1dCSXHkAAAAd/googas-hop-on-minecraft.gif",
"https://media.tenor.com/P2fPNhg742gAAAAM/roblox-bedwars.gif",
"https://media1.tenor.com/m/-AOCG9VUWPsAAAAd/gta-san-andreas.gif",
"https://media1.tenor.com/m/1y60UgCfusgAAAAd/shocked-scared.gif",
"https://media.tenor.com/bkNAjqc_mmoAAAAM/drake-drake-meme.gif",
"https://media1.tenor.com/m/zKYNgCu5TjYAAAAC/ness-pk-fire.gif",
"https://media.tenor.com/_T3cNUgtX2QAAAAM/megatron-optimus-prime.gif",
"https://media.tenor.com/_1ljAWISakgAAAAM/optimus-prime-annoyed.gif",
"https://media.tenor.com/r6tWgyhJceAAAAAj/speech-bubble.gif"
]
return images[(Math.floor(Math.random() * images.length))]
}
document.getElementById("huh").setAttribute("src", randomImage())
</script>
</body>
</html>