-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublications.html
57 lines (53 loc) · 2.1 KB
/
publications.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
<!DOCTYPE html>
<html>
<title>CV and Publications - 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;
}
</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>
<!-- Menu Container -->
<div class="w3-container" id="publications">
<div class="w3-content" style="max-width:700px">
<h2 class="w3-center w3-padding-48"><span class="w3-tag w3-wide">CV AND PUBLICATIONS</span></h2>
<div class="w3-row w3-center w3-card w3-padding">
<p>
<h4><a href="CV.pdf">Click here for a link to my CV</a> <br> <a
href="https://orcid.org/0000-0002-1560-5286">And click here for a link
to my ORCID</a> </h4><br>
</p>
<img src="kepler.jpg" style="width:100%;max-width:1000px;margin-top:32px;">
</div>
</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>