-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
71 lines (61 loc) · 2.83 KB
/
cv.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yuxin Yang | CV</title>
<link rel="stylesheet" type="text/css" href="./resources/css/style.css">
</head>
<body>
<!-- Sidebar -->
<nav class="sidebar">
<p class=h1><strong>Y</strong>UXIN <strong>Y</strong>ANG</p>
<button type="button" class="collapsible">Landscape and Urban Design</button>
<div class="content">
<ul><a href="project1.html" class=p--info>From Airport to HST Station: Bio Intermodality</a></ul>
<ul><a href="project2.html" class=p--info>Crosswind Data Center</a></ul>
<ul><a href="project3.html" class=p--info>Migration is Beautiful: Biophillic Boulevard</a></ul>
<ul><a href="project4.html" class=p--info>Dredge Engine</a></ul>
</div>
<br>
<button type="button" class="collapsible">Technology</button>
<div class="content">
<ul><a href="tech1.html" class=p--info>IoT Shoreline: Wave, Weave</a></ul>
<ul><a href="tech2.html" class=p--info>CityScope Module: Kendall Life-Work Crescendo</a></ul>
<ul><a href="tech3.html" class=p--info>Remote Sensing Sanyang Wetland</a></ul>
<ul><a href="tech4.html" class=p--info>Adaptive Rocking Lattice Stool</a></ul>
<ul><a href="tech5.html" class=p--info>Air-Pillow Attire for Haphephobia</a></ul>
</div>
<p><a href="whim.html" class=p--info>Whim</a></p>
<p><a href="cv.html" class=p--info>CV</a></p>
<p><a href="index.html" class=p--info>About</a></p>
<footer>
<p>Published on GitHub Page <br>© Yuxin Yang, Feb 2023</p>
</footer>
</nav>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
<!-- Page Content -->
<div style="margin-left:240px" class="a">
<p class=p--info><a href="https://acrobat.adobe.com/link/track?uri=urn:aaid:scds:US:301cff17-277f-3694-944b-bb3e06284478"><strong>Download Yuxin Yang's CV</strong></a></p>
<div>
<p class=p--info>Inquire via email: <a href="mailto:[email protected]">[email protected]</a><br>
Connect via LinkedIn: <a href="https://www.linkedin.com/in/yuxin-yang-78a671191/?originalSubdomain=cn">Here</a></p>
</div>
</div>
</body>
</html>