-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (145 loc) · 6.41 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5MSKJH3VR6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5MSKJH3VR6');
</script>
<meta name="google-site-verification" content="hp30S3T1lXky2LkuYTIekzKo7v8JdubwLh0F3191l_U" />
<title>Yonny Sklansky</title>
<meta charset="utf-8" meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"></link>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="icon" href="Yonny.jpg"></link>
<script type='text/javascript' src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type='text/javascript' src="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
<style type='text/css'>
ul.nav li.dropdown:hover ul.dropdown-menu {
display: block;
}
</style>
<style>
* {
font-family: 'Helvetica Neue';
font-size: 16px;
}
img {
position: relative;
transform: scale(1);
transition: .5s ease;
background: rgba(255, 255, 255, 0);
border: 3px solid rgba(0, 0, 0, 0);
z-index: 1;
cursor: pointer
}
.custom-image {
position: relative;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 1);
transform: scale(1);
transition: .5s ease;
z-index: 3;
}
.active {
position: relative;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 1);
transform: scale(1);
transition: .5s ease;
z-index: 3;
border: 3px solid rgba(0, 0, 0, .5);
}
img:hover {
transition: .5s ease;
border: 3px solid rgba(0, 0, 0, .5);
z-index: 2;
cursor: pointer
}
</style>
</meta>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./About-me.html">About Me</a></li>
<li class="dropdown"><a href="./research.html"> Research <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="./persistence.html">Persistent Homology of the Cosmic Web</a></li>
<li><a href="./voids.html">Void Clustering and Heirarchy</a></li>
<li><a href="./caustics.html">Caustics in Large-Scale Structure</a></li>
</ul>
<li class="dropdown"><a href="./hobbies.html"> Hobbies and Interests <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="./scioly.html">Science Olympiad</a></li>
<li><a href="./drones.html">Drones</a></li>
</ul>
<li><a href="./CV.pdf" target="_blank">Curriculum Vitae</a></li>
</li>
</ul>
</div>
</div>
</nav>
<div class="container", align = "justify", style="margin-top:50px">
<div class="page-header", align = "left">
<h2>Yonny Sklansky</h2>
</div>
<div class="col-sm-4">
<a href="./CV.pdf" target="_blank">
<img src="./Yonny.jpg" style="width:100%" class="custom-image"></img>
</a>
<h3>Contact</h3>
<p>
College of Arts and Sciences <br>
University of Pennsylvania <br>
Philadelphia, PA<br>
+1 484-983-1945
</div>
<div class="col-sm-8">
<header><h3>Hello!</h3></header>
<p>
I am a 4th-year undergraduate physics and astronomy student at the <a href="https://www.physics.upenn.edu/">University of Pennsylvania</a> in Philadelphia, Pennsylvania. My research interests include computational cosmology, cosmological simulations, and the evolution of large-scale structure.<br><br>
On this website, you will find some of my projects and visualizations, including those of the persistent homology of the cosmic web and understanding of the evolution of large-scale structure using Lagrangian catastrophe theory. You will also find pages dedicated to some of my other interests.<br><br>
</p>
</p>
</div>
</div>
<script>
const images = document.querySelectorAll('img');
images.forEach(img => {
img.addEventListener('click', function() {
this.classList.toggle('active');
});
});
</script>
</body>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="./Sticky Footer Navbar Template for Bootstrap_files/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="./Sticky Footer Navbar Template for Bootstrap_files/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="./Sticky Footer Navbar Template for Bootstrap_files/ie10-viewport-bug-workaround.js"></script>
</html>