-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTalks.html
More file actions
71 lines (56 loc) · 2.65 KB
/
Talks.html
File metadata and controls
71 lines (56 loc) · 2.65 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
<!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="javascript:void(0);" class="icon" onclick="myFunction()">
<i style="font-size:24px" class="fa"></i></a>
</div>
<h1 style="text-align:center;margin-top: 5em;font-size: 30px;">List of Recent Talks, click slide for recording (if availible)</h1>
<h1 style="text-decoration:underline; text-align:center;margin-top: 2em;font-size: 25px;">SCP, Boston MA (2025)</h1>
<a style = "align-items:center;text-align: center;" href="https://www.youtube.com/watch?v=adkY6txDyqs">
<img class="center" src="pic/Miceotopes.png">
</a>
<hr>
<h1 style="text-decoration:underline; text-align:center;margin-top: 2em;font-size: 25px;">European Single Cell Proteomics Converence, Vienna (2021)</h1>
<a style = "align-items:center;text-align: center;" href="https://www.youtube.com/watch?v=ZiWIT2KncOo">
<img class="center" src="pic/vienna.png">
</a>
<hr>
<h1 style="text-decoration:underline;text-align:center;margin-top: 1em;font-size: 25px;">Single Cell Proteomics Conference, Northeastern University (2021)</h1>
<a style = "align-items:center;text-align: center;" href="https://www.youtube.com/watch?v=DJ1U_KpMNcY">
<img class="center" src="pic/SCP1.png">
</a>
<hr>
<h1 style="text-decoration:underline;text-align:center;margin-top: 1em;font-size: 25px;">American Society of Mass Spectrometry (2021)</h1>
<img class="center" src="pic/PDAC.png">
<hr>
<h1 style="text-decoration:underline;text-align:center;margin-top: 1em;font-size: 25px;">Single Cell Proteomics Conference, Northeastern University (2022)</h1>
<a style = "align-items:center;text-align: center;" href="https://www.youtube.com/watch?v=Y5hOCYqbiEk&t=126s">
<img class="center" src="pic/pres.png">
</a>
<hr>
<h1 style="text-decoration:underline;text-align:center;margin-top: 1em;font-size: 25px;">Johns Hopkins Single Cell Conference (2022)</h1>
<img class="center" src="pic/JH.png">
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>