-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (101 loc) · 4.44 KB
/
index.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
119
<!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 - Home</title>
<!-- Meta tags-->
<meta name="keywords" content="John Della Rosa">
<meta name="author" content="John Della Rosa" >
<meta name="description" content="John Della Rosa's personal website">
<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="./index.html"><u>Home</u></a> |
<a href="./resume.html">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="./biography.html">About</a>|
<a href="./projects.html">Projects</a>|
<a href="./miscellaneous.html">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>John Della Rosa</h1>
<img src="portrait.jpg" style="width:clamp(100px,30vw,300px); margin-left: auto;margin-right: auto;display: block; border-radius:50%;" alt="John Della Rosa Headshot">
<br>
<p style="text-align: center; font-size: large; font-weight: bold;"><a href="./projects/biophysics-book/table-of-contents"> New: Biophysical chemistry eTextbook</a></p>
<div class="grid-container" style="grid-template-columns: auto auto;">
<div class="grid-item">
<h2>Resume</h2>
<br>
<a href="./resume.html"><button class="button button2">Read More</button></a>
</div>
<div class="grid-item">
<h2>About</h2>
<br>
<a href="./biography.html"><button class="button button2">Read More</button></a>
</div>
<div class="grid-item">
<h2>Projects</h2>
<br>
<a href="./projects.html"><button class="button button2">Read More</button></a>
</div>
<div class="grid-item">
<h2>Misc.</h2>
<br>
<a href="./miscellaneous.html"><button class="button button2">Read More</button></a>
</div>
</div>
<br>
<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>