-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
74 lines (72 loc) · 2.83 KB
/
404.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
70
71
72
73
74
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mov-cli</title>
<link rel="stylesheet" href="css/404.css" />
<link rel="icon" href="/images/favicon.ico" type="image/x-icon" />
</head>
<body>
<!-- NAVBAR START -->
<div class="topbar">
<div class="topbar-container">
<a href="https://VocabCLI.github.io">
<img class="logo md:object-center md:object-cover sm:object-center sm:object-fill" src="../assets/logos//VocabCLI - White.png" alt="logo" />
</a>
<!-- RIGHT SIDE OF NAVBAR -->
<nav class="hidden md:block">
<ul class="inline-flex">
<li class="mr-2 md:text-lg">
<a class="hover:text-indigo-600" href="/demo">Demo</a>
</li>
<li class="mr-2 md:text-lg">
<a class="hover:text-indigo-600" href="/about">About</a>
</li>
<li class="mr-2 md:text-lg">
<a class="hover:text-indigo-600" href="https://vocabcli.github.io/docs">Docs</a>
</li>
<li class="mr-2 md:text-lg">
<a class="hover:text-indigo-600" href="https://github.com/VocabCLI/VocabCLI">GitHub</a>
</li>
</ul>
</nav>
<button id="hamburger-menu-toggle" class="px-3 py-2 border border-gray-400 rounded md:hidden hover:bg-gray-100 focus:outline-none">
<svg class="w-5 h-5 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z" />
</svg>
</button>
</div>
</div>
<!-- END NAVBAR -->
<!-- MOBILE NAVBAR -->
<div class="mobile-navbar hidden pb-5 md:block">
<ul class="mx-auto bg-white sm:hidden py-4">
<li class="mb-3 text-center w-1/2 sm:p-2">
<a class="text-black font-bold text-md lg:hidden md:hidden hover:text-indigo-600 " href="/demo">Demo</a>
</li>
<li class="mb-3 text-center w-1/2 sm:p-2">
<a class="text-black font-bold text-md lg:hidden md:hidden hover:text-indigo-600 " href="/about">About</a>
</li>
<li class="mb-3 text-center w-1/2 sm:p-2">
<a class="text-black font-bold text-md lg:hidden md:hidden hover:text-indigo-600 " href="https://vocabcli.github.io/docs">Docs</a>
</li>
<li class="mb-3 text-center w-1/2 sm:p-2">
<a class="text-black font-bold text-md lg:hidden md:hidden hover:text-indigo-600 " href="https://github.com/VocabCLI/VocabCLI">GitHub</a>
</li>
</ul>
</div>
<div class="container">
<div class="404">
<div class="error">
<h1>404 Error</h1>
<p>Page not Found</p>
</div>
</div>
</div>
<script>
document.querySelector('#hamburger-menu-toggle').addEventListener('click', function() {
document.querySelector('.mobile-navbar').classList.toggle('hidden');
});
</script>
</body>
</html>