-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (69 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dr. Michael Amir | Multi-Agent Systems Research</title>
<style>
body {
margin: 0;
padding: 40px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.7;
color: #333;
background: #fff;
max-width: 600px;
margin: 0 auto;
}
h1 {
font-size: 2em;
font-weight: normal;
margin: 0 0 30px 0;
color: #000;
text-align: center;
}
p {
margin: 20px 0;
font-size: 1em;
}
a {
color: #007ACC;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.profile-img {
display: block;
margin: 0 auto 30px auto;
border-radius: 50%;
max-width: 150px;
}
.about-me {
margin: 30px 0;
}
.contact {
list-style: none;
padding: 0;
margin: 40px 0 0 0;
text-align: center;
}
.contact li {
margin: 10px 0;
}
</style>
</head>
<body>
<h1>Hi! I am Michael Amir.</h1>
<img src="profilepicture.jpg" alt="Michael Amir" class="profile-img">
<div class="about-me">
<p>I'm a postdoc in the <a href="https://proroklab.org/wp/" target="_blank">Prorok Lab</a> at Cambridge University, working on multi-agent and multi-robot systems. My research focuses on algorithms for multi-agent teams, with an emphasis on provable performance and safety guarantees, at the intersection of theoretical computer science and machine learning.</p>
</div>
<p>While this website is under construction, you can find my research publications on my <a href="https://scholar.google.co.il/citations?user=XaIdnakAAAAJ&hl=en" target="_blank">Google Scholar profile</a>.</p>
<p>Contact:</p>
<ul class="contact">
<li><a href="mailto:ma2151@cam.ac.uk">ma2151@cam.ac.uk</a></li>
<li><a href="https://www.linkedin.com/in/michael-amir-b9881b301?originalSubdomain=uk" target="_blank">LinkedIn</a></li>
</ul>
</body>
</html>