-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
82 lines (75 loc) · 2.64 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
<!DOCTYPE html>
<html>
<head>
<title>Timothy Ng</title>
<meta name="description" content="text" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"
/>
<meta charset="utf-8" />
<meta property="og:locale" content="en_US" />
<meta name="content-language" content="en_US" />
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="icon" href="img/favicon.ico" type="image/x-icon" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.10/css/all.css"
integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="css/skeleton.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato"
/>
</head>
<body>
<div class="container">
<!-- .container is the main centered wrapper"-->
<div id="header-container">
<div class="row">
<div class="six columns">
<p id="brand"><a href="index.html">timothy ng</a></p>
</div>
<div id="nav-container" class="six columns">
<a href="index.html">home</a> <span class="separator">-</span>
<a href="index.html#about">about</a>
<span class="separator">-</span>
<a href="index.html#portfolio">portfolio</a>
</div>
</div>
</div>
<hr class="header-footer-seperator" />
<!--__________CONTENT__________ -->
<div id="error">
<div class="content-container centered">
<h4>Uh oh... This page doesn't exist.</h4>
<p><a href="index.html">Here's a link back to familiar land.</a></p>
</div>
</div>
<!--__________END CONTENT__________ -->
<hr class="header-footer-seperator" />
<div id="footer">
<p>
<a href="mailto:[email protected]"
><i class="fa fa-envelope icon" aria-hidden="true"></i
></a>
-
<a href="https://www.linkedin.com/in/timorthi" target="_blank"
><i class="fab fa-linkedin icon" aria-hidden="true"></i
></a>
-
<a href="https://github.com/timorthi" target="_blank"
><i class="fab fa-github-alt icon" aria-hidden="true"></i
></a>
-
<a href="https://gitlab.com/timorthi" target="_blank"
><i class="fab fa-gitlab icon"></i
></a>
</p>
</div>
</div>
</body>
</html>