-
Notifications
You must be signed in to change notification settings - Fork 37
/
404.html
76 lines (76 loc) · 2.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>404 | NOT FOUND</title>
<meta
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
name="viewport"
/>
<link
rel="stylesheet"
href="./styles.css"
media="screen"
title="no title"
/>
<script
src="https://code.jquery.com/jquery-3.1.1.slim.min.js"
integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc="
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css?family=Rubik"
rel="stylesheet"
/>
<link rel="icon" href="images/favicon.png" />
</head>
<body>
<div class="container">
<a href="/index.html">
<img id="jd-logo" src="images/logo_primary.svg" alt="Junior Dev Logo" />
</a>
<nav>
<ul>
<li>
<a href="#newsletter"
><img
class="navIcon"
id="newsletterIcon"
src="images/plane.svg"
alt="paper plane icon"
/><span class="navText">Sign up to our Newsletter</span></a
>
</li>
<li>
<a href="http://juniordevcommunity.herokuapp.com" target="_blank"
><img
class="navIcon"
id="slackIcon"
src="images/slack.svg"
alt="slack icon"
/><span class="navText">Join our Slack</span></a
>
</li>
<li>
<a href="http://bit.ly/JDSpeakers" target="_blank"
><img
class="navIcon"
id="speakerIcon"
src="images/speaker-v2.svg"
alt="speaker icon"
/><span class="navText">Become a Speaker</span></a
>
</li>
</ul>
</nav>
<div class="container-content text-align-center">
<img src="images/404.png" alt="404 Image" class="image-404"/>
<p>You won't find any Junior Devs around here...😔👀</p>
<a href="https://en.wikipedia.org/wiki/HTTP_404">More information about this error.</a>
<p>
<small>Back to <a href="index.html">Home Page</a>?</small>
</p>
</div>
</div>
</body>
</html>