-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
118 lines (97 loc) · 3.36 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:image" content="assets/css/memoji-sticker-hd" />
<!--CSS Styles -->
<link rel="stylesheet" href="assets/css/styles.css" />
<!-- Favicons -->
<!-- <link
rel="apple-touch-icon"
sizes="180x180"
href="assets/icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/icons/favicon-32x32.png"
/> -->
<!-- Animate CSS CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<title>Jeremy Lee | Student </title>
<link
rel="shortcut icon"
href="https://assets.stickpng.com/images/58e383a9204d556bbd97b149.png"
/>
</head>
<body class="body-404">
<div id="circle"></div>
<!-- Navbar -->
<nav>
<a href="https://jeremyl.me">
<img src="assets/images/logo.png" class="nav-logo" alt="logo">
</a>
<ul class="navigation">
<li><a href="#about" class="nav-link">About</a></li>
<li><a href="#projects" class="nav-link">Projects</a></li>
<li><a href="#bookshelf" class="nav-link">Bookshelf</a></li>
<li><a href="#blog" class="nav-link">Blog</a></li>
<li><a href="#contact" class="nav-link">Contact</a></li>
</ul>
<button class="burger-menu" id="burger-menu">
<ion-icon class="bars" name="menu-outline"></ion-icon>
</button>
</nav>
<section class="not-found">
<h1>404 Page Not Found</h1>
<img src="./assets/images/sad-memoji.PNG" alt="sad memoji">
</section>
<!-- Footer section -->
<footer class="contact-404" id="contact-404">
<div class="contact-social-links">
<a href="https://open.spotify.com/user/egzgqd1rtehhu6m7d604qz42q?si=cf3bda32d4f2490c"
target="_blank">
<img src="assets/images/spotify.png" alt="spotify icon" >
</a>
<a href="https://www.linkedin.com/in/jeremylee7/"
target="_blank">
<img src="assets/images/linkedin_box.png" alt="linkedin icon" >
</a>
<a href="https://www.facebook.com/dosirac1/"
target="_blank">
<img src="assets/images/facebook.png" alt="facebook icon" >
</a>
<a href="https://www.instagram.com/dosirac7/"
target="_blank">
<img src="assets/images/instagram.png" alt="instagram icon" >
</a>
<a href="https://github.com/jeremylee34"
target="_blank">
<img src="assets/images/github_box.png" alt="resume icon" >
</a>
<a href="mailto: [email protected]"
target="_blank">
<img src="assets/images/mail.png" alt="email icon" >
</a>
</div>
<p>© Jeremy Lee 2022</p>
</footer>
<!-- Website scripts -->
<script src="assets/js/app.js"></script>
<!-- Ion icons scripts -->
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
</body>
</html>