-
Notifications
You must be signed in to change notification settings - Fork 0
/
photos.html
83 lines (78 loc) · 3.43 KB
/
photos.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
<!DOCTYPE HTML>
<!--
Strata by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Xinyun Cao Website</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- Header -->
<header id="header">
<div class="inner">
<a href="#" class="image avatar"><img src="images/headshot.jpg" alt="Headshot of Xinyun Cao with straight hair, wearing round eyeglasses and a dark blue collared shirt." /></a>
<h1>Hi! I am <strong>Xinyun Cao</strong>,</h1>
<h1>a PhD student at the University of Michigan.</h1>
<h1>Connect with me on <a href = "https://www.linkedin.com/in/xinyun-c/">LinkedIn</a> and <a href = "https://x.com/xinyun_c">Twitter</a>!</h1>
</div>
</header>
<!-- Main -->
<div id="main">
<!-- Top Navigation Bar -->
<div class="topnav">
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="cv.html">CV</a>
<a href="games.html">Games</a>
<a href="photos.html">Photos</a>
<a href="contact.html">Contact</a>
</div>
<!-- Three -->
<section id="three">
<h1>Photos</h1>
<div class="column">
<div>
<p>I love making connections with fellow researchers, colleagues, and friends! Outside of academia, I also love a lot of things. I am good at some of them (e.g. singing), and learning others (e.g. rock climbing). This page is really just a photo dump.</p>
</div>
<hr>
<div class="photo-wall">
<img src="images/lab.jpg" alt="photo of members of the Soundability Lab playing escape room" onclick="openLightbox(this)">
<img src="images/rock.jpg" alt="photo of Xinyun in front of a rock climbing wall" onclick="openLightbox(this)">
<img src="images/berry.jpg" alt="photo of a pot of alpine strawberries" onclick="openLightbox(this)">
<img src="images/kayak.jpg" alt="photo of Xinyun on a kayak in the water" onclick="openLightbox(this)">
<img src="images/sing.jpg" alt="photo of Xinyun performing in a choir" onclick="openLightbox(this)">
<img src="images/miso.jpg" alt="photo of a tabby cat on top of a yellow sofa" onclick="openLightbox(this)">
</div>
</div>
<div id="lightbox" class="lightbox">
<span class="close" onclick="closeLightbox()">×</span>
<img class="lightbox-content" id="lightbox-img">
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<ul class="icons">
<li><a href="https://github.com/xinyun-cao" class="icon brands fa-github"><span class="label">Github</span></a></li>
<li><a href="mailto:[email protected]" class="icon solid fa-envelope"><span class="label">Email</span></a></li>
</ul>
<ul class="copyright">
<li>© Copyright © Xinyun Cao - All Rights Reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.poptrox.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>