-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (105 loc) · 3.52 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<!--
Adapted from Identity by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Matthew H. Futia</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main4.css" />
<script type = "text/javascript">
function displayNextImage() {
x = (x === images.length - 1) ? 0 : x + 1;
document.getElementById("img").src = images[x];
}
function displayPreviousImage() {
x = (x <= 0) ? images.length - 1 : x - 1;
document.getElementById("img").src = images[x];
}
function startTimer() {
setInterval(displayNextImage, 5000);
}
var images = [], x = -1;
images[0] = "Gallery/headshot.jpg";
images[1] = "Gallery/diving_entry_main.jpg";
images[2] = "Gallery/eyed_eggs_ms_main.jpg";
images[3] = "Gallery/rov_laketrout_main.JPG";
images[4] = "Gallery/winterwork_main.jpg";
if ('addEventListener' in window) {
window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-preload\b/, ''); });
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EBVFW8KYTX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-EBVFW8KYTX');
</script>
<!-- Page formatting -->
<style>
body {
font-family: Arial;
}
img{
height: 50vh;
}
div.a{
height: 5em;
}
</style>
</head>
<body class="is-preload" onload = "startTimer()">
<!-- Header -->
<header id="header">
<nav class="links">
<ul>
<li><h3><a href="https://mfutia.github.io/">Home</a></h3></li>
<li><h4><a href="About.html">About</a></li></h4>
<li><h4><a href="CV.html">CV</a></li></h4>
<li><h4><a href="Research.html">Research</a></li></h4>
<li><h4><a href="Pubs.html">Publications</a></li></h4>
<li><h4><a href="Gallery.html">Gallery</a></li></h4>
</ul>
</nav>
</header>
<!-- Main -->
<div id="main">
<div>
<h1>Matthew H. Futia</h1>
</div>
<div>
<h2> Aquatic Ecology for Conservation & Restoration</h2>
</div>
<div>
<h2 >Post-doctoral Researcher - University of Vermont</h2>
</div>
<div class="avatar">
<img id="img" src="Gallery/headshot.jpg">
<div style="position:relative; bottom:-50%">
<span class="button" onclick="displayPreviousImage()"><</span>
<span class="button" onclick="displayNextImage()">></span>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<div class="a">
<ul class="icons">
<li><a href="https://x.com/matt_futia" class="icon brands fa-twitter"></a></li>
<li><a href="https://github.com/mfutia" class="icon brands fa-github"></a></li>
<li><a href="mailto: [email protected]" class="fa-envelope"></a></li>
</ul>
</div>
<div>
<ul class="copyright">
<li><h6>© Matthew H. Futia</h6></li>
</ul>
</div>
</footer>
</body>
</html>