-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>James Mineau</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body class="topo-background landing">
<nav>
<a href="index.html">
<h1>James K. Mineau</h1>
</a>
<div class="nav-links">
<ul>
<li><a href="research.html">research</a></li>
<li><a href="https://jamesmineau.chpc.utah.edu/lair">lair</a></li>
<li><a href="cv.pdf">cv</a></li>
</div>
</nav>
<main>
<div class="landing-content">
<div class="landing-text">
<p>Atmospheric scientist combining my love for the outdoors with a passion for data.
Currently a PhD student at the University of Utah analyzing urban methane emissions in the Salt Lake Valley.
I use Python to explore the complexities of our planet's atmosphere and find innovative solutions to environmental challenges.
</p>
</div>
<figure class="landing-image">
<img src="assets/images/james.jpg" alt="James K. Mineau">
<figcaption><em>"the best map scale is 1:1"</em></figcaption>
</figure>
</div>
</main>
<footer class="footer-content">
<div class="icons-container">
<a class="footer-icon" href="https://github.com/jmineau" target="_blank"><i class="fab fa-github"></i></a>
<a class="footer-icon" href="https://linkedin.com/in/james-mineau" target="_blank"><i class="fab fa-linkedin"></i></a>
<a class="footer-icon" href="https://orcid.org/0000-0002-2289-2252" target="_blank"><i class="fab fa-orcid"></i></a>
<a class="footer-icon" href="mailto:[email protected]" target="_blank"><i class="fas fa-envelope"></i></a>
</div>
<div class="footer-text">
<div class="footer-textbox"></div>
<div class="footer-textbox copyright">
<p>© 2024</p>
</div>
<div class="footer-textbox attribution">
<p>Inspired by <a href="https://benfasoli.com/">benfasoli.com</a> & <a href="https://github.com/alshedivat/al-folio\">al-folio</a>.</p>
</div>
</div>
</footer>
</body>
</html>