-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (87 loc) · 4 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
<!DOCTYPE html>
<html>
<title>Joshua V. Shields</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<style>
body,
html {
height: 100%;
font-family: "Inconsolata", sans-serif;
}
.bgimg {
background-position: center;
background-size: cover;
background-image: url("me.jpg");
min-height: 75%;
margin-top: 30px;
}
.menu {
display: none;
}
.aligncenter {
text-align: center;
}
</style>
<body>
<!-- Links (sit on top) -->
<div class="w3-top">
<div class="w3-row w3-padding w3-black">
<div class="w3-col s3">
<a href="index.html" class="w3-button w3-block w3-black">HOME</a>
</div>
<div class="w3-col s3">
<a href="about.html" class="w3-button w3-block w3-black">ABOUT ME</a>
</div>
<div class="w3-col s3">
<a href="publications.html" class="w3-button w3-block w3-black">CV AND PUBLICATIONS</a>
</div>
<div class="w3-col s3">
<a href="research.html" class="w3-button w3-block w3-black">RESEARCH</a>
</div>
</div>
</div>
<!-- Header with image -->
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-bottomleft w3-center w3-padding-large w3-hide-small">
<span class="w3-tag">Biomedical and Physical Sciences <br> 567 Wilson Rd., Room 3246 <br> East Lansing,
48823 MI</span>
</div>
<div class="w3-display-right w3-center">
<span class="w3-text-white" style="font-size:90px">Joshua V. <br>Shields</span>
</div>
<div class="w3-display-bottomright w3-center w3-padding-large">
<span class="w3-tag">Astrophysics Graduate Student<br>shield90 [at] msu [dot] edu
<br><a href="https://github.com/jvshields">https://github.com/jvshields</a> </vr></span>
</div>
</header>
<div class="w3-container" id="about">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-64"><span class="w3-tag w3-wide">Welcome to my website! <br> Stay awhile,
and listen!</span></h5>
<p>I'm Josh! I'm a postdoctoral researcher working with <a
href="https://wkerzendorf.github.io/#main">Professor Wolfgang
Kerzendorf</a>
and the <a href="https://kerzendorf-lab.github.io/">Kerzendorf Group</a> modeling stars and searching
for surviving companions of type Ia supernovae to learn about their progenitor systems and test
different progenitor theories. I am a specialist in radiative transfer, and
I use statistical methods capitalizing on the revolutionary new GAIA
mission as well as archival Hubble data to investigate the stellar populations in supernova
remnants. I work at the intersection of observation and theory, making detailed models of stellar
atmospheres to simulate escaping stellar light and then fitting those models to observations to
learn about the structure and composition of stars. <br>
I am the primary developer on the open-source <a href="https://github.com/tardis-sn/stardis">STARDIS
code</a>, which solves the radiative transfer equation in the outer layers of a star to simulate
light passing through it.
</p>
</div>
</div>
<!-- Footer -->
<footer class="w3-center w3-light-grey w3-padding-48 w3-large">
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank"
class="w3-hover-text-green">w3.css</a></p>
</footer>
</body>
</html>