forked from approachable-io/software-interview-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
30 lines (22 loc) · 821 Bytes
/
404.html
File metadata and controls
30 lines (22 loc) · 821 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>404 - Page NOT Found</title>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container_error">
<img src="images/sad_face.png" alt="" class="sad_face">
<h1>404</h1>
<h3>Oops!! Page not found.</h3>
<h5>We're sorry, the page you're looking for doesn't seem to exist...</h5>
<p>You probably want to go back to the <a href="index.html">homepage</a></p>
<p>
Approachable IO is an organization committed to creating projects that allow developers of all experience levels to contribute to the project.
For more information about our goals and projects, click <a href="index.html">here</a>.
</p>
</div>
</body>
</html>