forked from multiverseweb/CodeIt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
116 lines (111 loc) · 4.45 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CodeIt - 404 Not Found</title>
<link rel="stylesheet" href="resources/styles/style.css" />
<link rel="stylesheet" href="resources/styles/error404.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Sometype+Mono:ital,wght@0,400..700;1,400..700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link
rel="shortcut icon"
href="../images/Nomenclature.png"
type="image/x-icon"
/>
</head>
<body id="body" class="light-mode">
<button type="button" class="theme" id="darkThemeBtn">
<img src="../images/moon.png" class="themeLogo" />
</button>
<button type="button" class="theme" id="lightThemeBtn" style="display: none">
<img src="../images/sun.png" class="themeLogo" />
</button>
<div class="top-elements">
<a href="../index.html" class="top-link">
<img
src="../images/Nomenclature.png"
alt="logo"
class="logo"
id="logo"
/>
<p class="codeit">CodeIt</p>
</a>
<nav class="navbar">
<div class="navbar-container">
<table id="navbar_table">
<tr>
<td class="nav-item">
<a href="../index.html" class="home">Home</a>
</td>
<td class="nav-item">
<a href="pages/refine.html" class="competitive">Code Refiner</a>
</td>
<td class="nav-item">
<a href="pages/obfuscation.html" class="obfuscation">Code Obfuscator</a>
</td>
<td class="nav-item">
<a href="pages/timeComplexity.html" class="time">Time Complexity Analyser</a>
</td>
<td class="nav-item">
<a href="../index.html#contributeSection">Contribute!</a>
</td>
<td class="nav-item">
<a href="./pages/contributorsSection.html">Our Contributors!</a>
</td>
<td class="nav-item">
<a href="../index.html#feedback">Give Feedback!</a>
</td>
<td class="nav-item">
<a href="https://github.com/multiverseweb/CodeIt/blob/main/LICENSE#L3">License</a>
</td>
<div class="highlight"></div>
</tr>
</table>
</div>
</nav>
<div class="hamburger" onclick="toggleSidebar()">
<span class="material-symbols-outlined"> unfold_more </span>
</div>
<div id="sidebar" class="sidebar">
<span class="close-btn" onclick="toggleSidebar()">×</span>
<a href="../index.html" class="home">Home</a>
<a href="refine.html" class="competitive">Code Refiner</a>
<a href="obfuscation.html" class="obfuscation">Code Obfuscator</a>
<a href="timeComplexity.html" class="time">Time Complexity Analyser</a>
<a href="../index.html#contributeSection">Contribute!</a>
<a href="contributorsSection.html">Our Contributors!</a>
<a href="../index.html#feedback">Give Feedback!</a>
<a href="https://github.com/multiverseweb/CodeIt/blob/main/LICENSE#L3">License</a>
</div>
<div class="gap"></div>
</div>
<main class="error-content">
<h2 id="error-text">Oops! Page not found.</h2>
<p>We couldn't find the page you requested. It might be unavailable at the moment or have a different URL.</p>
<div class="error-container">
<div class="error-number">4</div>
<div class="error-image">
<img src="../images/Nomenclature.png" alt="logo" />
</div>
<div class="error-number">4</div>
</div>
<a href="../index.html" class="go-back-btn">Return to Home</a>
</main>
<footer><p class="mistakes">
Don't forget to give feedback about CodeIt, it will help us improve and make a powerful tool.
</p>
</footer>
<script src="resources/scripts/common_functions.js"></script>
<script src="resources/scripts/error404.js"></script>
</body>
</html>