-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
100 lines (86 loc) · 4.34 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
<!DOCTYPE html>
<!--
References:
https://www.w3schools.com/howto/howto_js_collapsible.asp
-->
<html lang="en-US">
<head>
<meta charset="UTF-8">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2C44LTKBE1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2C44LTKBE1');
</script>
<title>John Della Rosa - 404</title>
<!-- Meta tags-->
<meta name="robots" content="noindex">
<meta name="keywords" content="">
<meta name="author" content="John Della Rosa" >
<meta name="description" content="404 Page">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="xmRhgeMA6cKjpHPsW1L1vNWAbPD-xnHWVeCCs8IjImg" />
<!-- https://favicon.io/favicon-generator/ -->
<link rel="apple-touch-icon" sizes="180x180" href="https://johndellarosa.github.io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://johndellarosa.github.io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://johndellarosa.github.io/favicon-16x16.png">
<link rel="manifest" href="https://johndellarosa.github.io/site.webmanifest">
<link rel="canonical" href="https://johndellarosa.github.io/"/>
<link rel="stylesheet" href="https://johndellarosa.github.io/style.css">
<script
src="https://unpkg.com/react@17/umd/react.development.js"
crossorigin
></script>
<script
src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"
crossorigin
></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
</head>
<body>
<div class="navbar">
<b style="margin-right:10px">John Della Rosa</b>|
<a href="https://johndellarosa.github.io/index"><u>Home</u></a> |
<a href="https://johndellarosa.github.io/resume">Resume</a>
<!-- <a href="./index.html#education">Education</a>
<a href="./index.html#experience">Experience</a>
<a href="./index.html#skills">Skills</a> -->
|
<a href="https://johndellarosa.github.io/biography">About</a>|
<a href="https://johndellarosa.github.io/projects">Projects</a>|
<a href="https://johndellarosa.github.io/miscellaneous">Misc</a>|
<a href="https://www.linkedin.com/in/johndellarosa/" target="_blank">Linkedin</a>|
<a href="https://github.com/johndellarosa" target="_blank">Github</a>|
<a href="https://play.google.com/store/apps/developer?id=JohnDellaRosa" target="_blank">Google Play</a>|
<a href="https://apps.apple.com/us/developer/john-della-rosa/id1684177615" target="_blank">Apple Store</a>
</div><br><br>
<h1>404 - Page Not Found</h1>
<p style="text-align:center">The requested page cannot be located. Please use the navbar above to go to another page.</p>
<h2>Here is a set of links to navigate to</h2>
<ol>
<li><a style="text-align:center" href="https://johndellarosa.github.io/projects/biophysics-book/table-of-contents">Biophysics Book</a></li>
<li><a style="text-align:center" href="https://johndellarosa.github.io/projects/differential-equations-book/table-of-contents">Math Book</a></li>
<li><a style="text-align:center" href="https://johndellarosa.github.io/projects/pso">Phantasy Star Online</a></li>
<li><a style="text-align:center" href="https://johndellarosa.github.io/projects/Math-Trial">Math Trial</a></li>
<li><a style="text-align:center" href="https://johndellarosa.github.io/projects/Volterra-Defense">Volterra Defense</a></li>
<li><a style="text-align:center" href="https://johndellarosa.github.io/projects/Right-Ascension">Right Ascension</a></li>
</ol>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
</body>
</html>