-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
64 lines (57 loc) · 2.55 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
<!DOCTYPE html>
<html>
<head>
<title>404 noes!</title>
<!-- META FIELDS -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Daydreaming since 1991.">
<meta name="keywords" content="Software,Development,Web">
<meta name="author" content="André Alves">
<!-- GOOGLE FONTS -->
<link href='http://fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Neuton' rel='stylesheet' type='text/css'>
<!-- CSS LINKS -->
<link rel="stylesheet" type="text/css" href="lib/normalize/normalize.css">
<link rel="stylesheet" type="text/css" href="lib/font-awesome-4.2.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/style.css">
<!-- FAVICON -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<div class="row">
<a href="/" id="logo">
<h1>André Alves<i class="fa fa-send"></i></h1>
</a>
<div id="toggle-nav"><i class="fa fa-bars"></i></div>
<nav class="nav-closed">
<ul>
<li><a href="index.html#work">Work</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="error">
<div class="wrapper">
<div class="row">
<div class="col-12">
<div id="caption">
<h1>Oh noes,</h1>
<h4>something went wrong!</h4>
<p>Us geeks call it error 404, which means the page you have requested was not found. Please let me know if you believe this shouldn't have happened.</p><p>Meanwhile, let's get back to the main page, shall we?</p>
<a class="button inverse" href="/">
Back to the main page
</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>