-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (55 loc) · 2.68 KB
/
index.html
File metadata and controls
72 lines (55 loc) · 2.68 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" type="image/png" href="logo.png">
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html">Home</a>
<a href="Publications.html">Publications</a>
<a href="Talks.html">Talks</a>
<a href="SkypeaScientist.html">Outreach</a>
<a href="Blog.html">Blog</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i style="font-size:24px" class="fa"></i></a>
</div>
<h1 style="text-align: center; font-size: 60px;margin-bottom: 0em; margin-top: 2em;">Andrew Leduc</h1>
<p style="text-align: center;font-size: 20px; margin-top: 0em;">Single cell protein analysis </p>
<div class="content" style=" margin-top: 2em;">
<div class="pic"><img src="pic/Andrew.png" width="400" height="400"></div>
<div class="text_box"><h1 style="margin-bottom: 0.5em;">About Me <a href="pic/Resume.pdf" download>[CV]</a> </h1> <p style="margin-top: 0em;">
Im a post-doctoral scientist in the Slavov lab
at Northeastern University. My research focuses on interpreting protein covariation across
single cells using liquid chromatography / mass spectrometry and studying the role of
post-transcriptional regulation in controlling cellular function. Our recent work has uncovered
the larger than previously appreciated role of protein degradation in shaping
celular proteomes, especially in slowly growing tissues such as the brain.</p>
<div class="center2">
<a style = "margin-right: 1em; text-decoration:none;" href="https://twitter.com/_AndrewLeduc">
<img alt="W3Schools" src="pic/twitter.jpg" width="50" height="50">
</a>
<a style = "margin-right: 1em; text-decoration:none;" href="https://www.linkedin.com/in/andrew-leduc-545276b0/">
<img alt="W3Schools" src="pic/linkedin.jpg" width="50" height="50">
</a>
<a style = "text-decoration:none;" href="https://github.com/Andrew-Leduc">
<img alt="W3Schools" src="pic/Github.png" width="50" height="50">
</a>
</div>
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>