-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
404.html
54 lines (50 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Error 404 | freeCodeCamp.org</title>
<link
rel="icon"
href="https://raw.githubusercontent.com/freeCodeCamp/freeCodeCamp/master/docs/images/branding/favicon.ico"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="universal-nav">
<img
alt="freeCodeCamp.org"
src="https://raw.githubusercontent.com/freeCodeCamp/freeCodeCamp/master/docs/images/branding/primary_logo.svg"
/>
</div>
<div class="error-middle">
<h2>We couldn't find the page you were looking for.</h2>
<br />
<h3>
It may have been moved or deleted. Please check the URL and try again.
Or
<a
href="https://www.youtube.com/freecodecamp"
target="_blank"
rel="noopener"
>try one of our free courses on Python, SQL, JavaScript and Linux</a
>.
</h3>
<h3>
You should
<a
href="https://twitter.com/freecodecamp"
target="_blank"
rel="noopener"
>follow us on twitter</a
>
for updates. We thank you for your patience while we make
freeCodeCamp.org faster.
</h3>
</div>
</body>
</html>