-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (69 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Martin Garrido-Rodriguez</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background-color: #121212; /* Dark background */
color: #ffffff; /* Light text color */
}
.container {
max-width: 600px;
margin: auto;
padding: 20px;
}
img {
width: 160px;
height: 170px;
border-radius: 50%;
border: 3px solid #ffffff; /* Light border for better contrast */
}
h1 {
margin-top: 20px;
}
p {
margin: 20px 0;
}
.links a {
display: inline-block;
margin: 10px;
padding: 10px 15px;
color: #121212; /* Dark text for contrast */
background-color: #ffffff; /* Light button background */
text-decoration: none;
border-radius: 5px;
}
.links a:hover {
background-color: #bbbbbb; /* Slightly darker hover effect */
}
p a {
color: #ffffff; /* White text */
text-decoration: underline; /* Underlined text */
}
</style>
</head>
<body>
<div class="container">
<h1>Martin Garrido-Rodriguez, PhD</h1>
<img src="my_photo.jpg" alt="Your Photo">
<p>Welcome to my personal website! I am a senior postdoctoral researcher working between the
<a href="https://www.embl.org/groups/savitski/" target="_blank">Savitski group at EMBL</a> (Heidelberg, Germany) and
<a href="https://www.ebi.ac.uk/research/saez/" target="_blank">Saez-Rodriguez group</a> at Heidelberg University and EMBL-EBI (Hinxton, UK).</p>
<p>Originally from Córdoba, Spain, I am a biochemist with over 10 years of experience analyzing omics data. I earned my Bachelor’s degree in Biochemistry from the University of Córdoba, followed by two Master’s degrees: an MSc in Biomedical Research from the University of Córdoba and an MSc in Computational Biology and Bioinformatics from the National Health School in Madrid. I developed my PhD research at the Maimonides Biomedical Research Institute of Córdoba (IMIBIC) and the Clinical Bioinformatics Area in Sevilla. In 2021, I began my postdoctoral journey at Heidelberg University and EMBL.</p>
<p>My current work focuses on advancing our understanding of cellular signaling processes. I specialize in conceptualizing and modeling these processes on a large scale, particularly through the functional analysis and interpretation of transcriptomics and functional proteomics data. To achieve this, I leverage computational network approaches and, as datasets grow larger, interpretable machine learning methods.</p>
<div class="links">
<a href="https://scholar.google.es/citations?user=UAg2BkUAAAAJ&hl=en" target="_blank">Google Scholar</a>
<a href="https://orcid.org/0000-0003-4125-5643" target="_blank">ORCID</a>
<a href="https://github.com/martingarridorc" target="_blank">GitHub</a>
<a href="https://bsky.app/profile/martingarridorc.bsky.social" target="_blank"></i>Bluesky</a>
<a href="https://x.com/martingarridorc" target="_blank"></i>X</a>
</div>
</div>
</body>
</html>