-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (80 loc) · 2.57 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
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="EN">
<head>
<meta charset="UTF-8">
<title>Santiago Arranz Olmos</title>
<style>
body {
background-color: black;
color: white;
font-size: 16px;
line-height: 1.4;
}
a {
border-bottom-width: 1px;
border-bottom-style: solid;
color: #D9D9D9;
text-decoration: none;
}
a:hover {
border-bottom: 0;
}
#page-wrap {
width: 80%;
margin-top: 5%;
margin-right: auto;
margin-left: auto;
margin-bottom: auto;
}
#profile-pic {
float: left;
}
</style>
</head>
<body>
<div id="page-wrap">
<div id="profile-pic">
<img
src="img/profile.jpg"
alt="Profile picture"
style="width:250px;height:250px;"
>
</div>
<div style="margin-left: 300px;">
<div id="information">
<h1>Santiago Arranz Olmos</h1>
<table>
<tr>
<td>Email:</td>
<td>santiago [dot] arranz-olmos [at] mpi-sp [dot] org</td>
</tr>
<tr>
<td>DBLP:</td>
<td><a href="https://dblp.org/pid/304/6207">https://dblp.org/pid/304/6207</a></td>
</tr>
</table>
</div>
<div id="introduction">
<p>
I'm a PhD student at
<a href="https://www.mpi-sp.org/">
Max Planck Institute
for Security and Privacy (MPI-SP)</a>.
</p>
<p>
I'm interested in programming languages theory and its
application to security.
</p>
<p>
I did my Master's at
<a href="https://www.unc.edu.ar/">Universidad Nacional
de Córdoba (UNC)</a>.
You can download my thesis
<a href="files/ms-thesis.pdf">here</a> (it's in
Spanish).
</p>
</div>
</div>
</div>
</body>
</html>