-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpersonal.html
123 lines (117 loc) · 5.24 KB
/
personal.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
<!DOCTYPE HTML>
<!--
Spatial by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<head>
<title>Personal</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
<link rel="stylesheet" href="css/w3.css">
</noscript>
</head>
<body class="landing">
<!-- Header -->
<header id="header" class="alt">
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research Interests</a></li>
<li><a href="cv/CV.pdf">Publications/CV</a></li>
<li><a href="data.html">Data/Code</a></li>
<li><a href="personal.html">Personal</a></li>
</ul>
</nav>
</header>
<!-- Banner -->
<section id="bannerpersonal">
<h2>Personal</h2>
</section>
<!-- One -->
<div class="container">
<p> I enjoy playing the guitar, playing tennis, traveling, hiking, watching movies, cooking, and exploring! Here's of me doing some of these activities. </p>
<div class="w3-content" style="max-width:800px;position:middle">
<div class="w3-display-container mySlides">
<img src="images/NYHS_bigdatafest.jpg" style="width:100%">
<div class="w3-display-topmiddle w3-large w3-container w3-padding-16 w3-black">
SDSS table at the NY Hall of Science - Big Data Fest!
</div>
</div>
<div class="w3-display-container mySlides">
<img src="images/hackthedinos.png" style="width:100%">
<div class="w3-display-topmiddle w3-large w3-container w3-padding-16 w3-black">
Hack the Dinos Hackathon and empty AMNH!
</div>
</div>
<div class="w3-display-container mySlides">
<img src="images/peacock.jpg" style="width:100%">
<div class="w3-display-bottomleft w3-large w3-container w3-padding-16 w3-black">
Peacocks in Madrid
</div>
</div>
<div class="w3-display-container mySlides">
<img src="images/eldridge.jpg" style="width:100%">
</div>
<div class="w3-display-container mySlides">
<img src="images/basque.jpg" style="width:100%">
<div class="w3-display-bottomleft w3-large w3-container w3-padding-16 w3-black">
Basque country
</div>
</div>
<div class="w3-display-container mySlides">
<img src="images/lapalma.jpg" style="width:100%">
<div class="w3-display-bottomleft w3-large w3-container w3-padding-16 w3-black">
Canary Islands
</div>
</div>
<div class="w3-display-container mySlides">
<img src="http://physics.nyu.edu/~cs3006/ISC/Past_Talks_Spring2016/6_Christine/20160415_185514.jpg" style="width:100%">
<div class="w3-display-bottomright w3-large w3-container w3-padding-16 w3-black">
Learning how to knit during the Intellectually Stimulating Craic!
</div>
</div>
<a class="w3-btn-floating w3-hover-dark-grey" style="position:absolute;top:55%;left:0" onclick="plusDivs(-1)">❮</a>
<a class="w3-btn-floating w3-hover-dark-grey" style="position:absolute;top:55%;right:0" onclick="plusDivs(1)">❯</a>
</div>
</div>
</section>
<footer id="footer">
<div class="container">
<ul class="copyright">
<li>© templated.co</li>
<li>Image Credit: Lidia Cano</li>
</ul>
</div>
</footer>
<script>
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length) {slideIndex = 1}
if (n < 1) {slideIndex = x.length}
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex-1].style.display = "block";
}
</script>
</body>
</html>