-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
69 lines (58 loc) · 2.81 KB
/
error.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/css.css">
<title>Hi - Karot</title>
<script src="https://kit.fontawesome.com/5acf4d9e80.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="navbar">
<div class="container">
<a class="logo" href="index.html">Karot</a>
<img id="mobile-cta" class="mobile-menu" src="files/lines1.svg" alt="Open Navigation">
<nav>
<img id="mobile-close" class="mobile-exit" src="files/close1.svg" alt="Close Navigation">
<ul class="primary-nav">
<li><a href="index.html">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="https://discord.gg/khjjAJ943S">Support</a></li>
<li><a href="https://docs.karot.xyz/">Docs</a></li>
</ul>
<ul class="secondary-nav">
<li class="invite01"><a href="https://discord.com/oauth2/authorize?client_id=822391645697212416&permissions=322632&redirect_uri=https://karot.xyz/hi.html&response_type=code&scope=bot%20applications.commands" class="text01">Invite</a></li>
</ul>
</nav>
</div>
</div>
<h1 class="err"><center>404</center></h1>
<center><p class="funny-text">Oh yeah man, you look chopped up! How about you return to somewhere safe?</p></center>
<footer>
<div class="footer-contenterror">
<h3 class="futer-textisko">Karot</h3>
<p class="futer-textik"><a href="privacy.html">Privacy</a> <a href="https://abuse.karot.xyz/">Abuse</a> </p>
<ul class="ikonki">
<li><a href="https://discord.gg/khjjAJ943S"><i class="fab fa-discord"></i></a></li>
<li><a href="https://www.instagram.com/karotbot/"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://github.com/karotbot"><i class="fab fa-github"></i></a></li>
</ul>
</div>
<div class="footer-oliverko">
<p><center>Web by <a href="https://oliminator.net" class="oliverkolink">OLIMINATOR</a> </center></p>
</div>
</footer>
<script>
const mobileBtn = document.getElementById('mobile-cta')
nav = document.querySelector('nav')
mobileBtnExit = document.getElementById('mobile-close');
mobileBtn.addEventListener('click', () => {
nav.classList.add('menu-btn');
})
mobileBtnExit.addEventListener('click', () => {
nav.classList.remove('menu-btn');
})
</script>
</body>
</html>