forked from aajbaker/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (104 loc) · 4.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Misha O'Keeffe</title>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&family=Montserrat:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="header">
<h1 style="text-align: center;">Misha O'Keeffe</h1>
<p class="contact">
<a href="mailto: [email protected]" style="color: white">[email protected]</a><br>
</p>
</div>
<div class="timeline-wrapper clearfix">
<div class="timeline-content-day">
<div class="timeline-line"></div>
<div class="timeline-content-item" data-timeline="hobbies">
<span>Hobbies</span>
<div class="timeline-content-item-reveal">
<a href="hobbies.html">
<img src="assets/imgs/hobbies.JPG">
<span>Ask Me About</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="travel">
<span>Travel</span>
<div class="timeline-content-item-reveal">
<a href="travel.html">
<img src="assets/imgs/travel.png">
<span>Where I've been</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="photo">
<span>Keeping Active</span>
<div class="timeline-content-item-reveal">
<a href="photo.html">
<img src="assets/imgs/photo2.jpg">
<span>What I'm up to</span>
</a>
</div>
</div>
<div class="timeline-content-item active" data-timeline="home">
<span>Home</span>
<div class="timeline-content-item-reveal">
<a href="index.html">
<img src="assets/imgs/portrait.png">
<span>About me</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="interests">
<span>Interests</span>
<div class="timeline-content-item-reveal">
<a href="interests.html">
<img src="assets/imgs/interests.png">
<span>On my Mind</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="positions">
<span>Open Science</span>
<div class="timeline-content-item-reveal">
<a href="positions.html">
<img src="assets/imgs/berkeley.JPG">
<span>My Commitment</span>
</a>
</div>
</div>
<div class="timeline-content-item" data-timeline="research">
<span>Research<br>and CV</span>
<div class="timeline-content-item-reveal">
<a href="research.html">
<img src="assets/imgs/BrainCartoon.png">
<span>In the Lab</span>
</a>
</div>
</div>
</div>
</div>
<div style="padding: 20px;"></div>
<div class="fade-in body-wrapper" style="text-align: center;">
<div class="title" style="justify-self: center;">Hey!</div>
<div class="text-box">
I'm a rising senior at the University of Wisconsin-Madison, where I'm majoring in economics and psychology.
I'm currently finishing up an internship at Yarrow Dunham's' <a href="http://www.socialcogdev.com/" target="_blank">Social Cognitive Development Lab</a> but I also work in Elizabeth Bonawitz's <a href="https://projects.iq.harvard.edu/ccdlab/home" target="_blank">Computational Cognitive Development Lab</a>
and Martha Alibali's <a href="https://alibali.psych.wisc.edu/" target="_blank">Cognitive Development & Communication Lab!</a>
<br><br><strong><i>Go right on the timeline for some of my professional work</i></strong>, and left for some other things about me!
</div>
<div class="fade-in flex" style="justify-content: center;">
<a href="https://drive.google.com/file/d/12oWj6erZQ3W97f2rGCZd0ER9QkWoN1Su/view?usp=drive_link" target="_blank">
<div class="title"> CV </div>
</a>
</div>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>