Skip to content

Commit

Permalink
add headshot
Browse files Browse the repository at this point in the history
  • Loading branch information
edurso committed Feb 12, 2024
1 parent 9bad9c0 commit e0491c1
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 30 deletions.
82 changes: 82 additions & 0 deletions archive/index.html.orig
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eric D'Urso</title>
<style>
body {
background-image: url('./img/background.jpg');
background-size: cover;
background-position: center;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

.card {
background-color: rgba(255, 255, 255, 0.8);
border-radius: 10px;
padding: 20px;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 400px;
}

.card img {
width: 50px;
height: 50px;
margin: 5px;
}

.card h1 {
margin-top: 10px;
font-size: 24px;
}

.card p {
margin-top: 5px;
font-size: 16px;
color: #555;
}

@media (max-width: 600px) {
.card {
padding: 10px;
}

.card img {
width: 30px;
height: 30px;
margin: 3px;
}

.card h1 {
font-size: 20px;
}

.card p {
font-size: 14px;
}
}
</style>
</head>

<body>
<div class="card">
<a href="https://www.github.com/edurso"><img src="./img/github.png" alt="GitHub Icon"></a>
<a href="https://www.linkedin.com/in/edurso/"><img src="./img/linkedin.png" alt="LinkedIn Icon"></a>
<a href="mailto:edurso@edurso.com"><img src="./img/email.png" alt="Mail Icon"></a>

<h1>Eric D'Urso</h1>
<p>Computer Engineering @ University of Michigan</p>
<p>Software Engineer @ Wolverine Radar Co.</p>
</div>
</body>

</html>
Binary file added favicon.ico
Binary file not shown.
Binary file added img/branch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/profile.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 29 additions & 30 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
background-image: url('./img/background.jpg');
background-size: cover;
background-position: center;
font-family: Arial, sans-serif;
font-family: Ubuntu, sans-serif;
margin: 0;
padding: 0;
display: flex;
Expand All @@ -24,59 +24,58 @@
border-radius: 10px;
padding: 20px;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 400px;
text-align: right;
max-width: 600px;
position: relative;
}

.card img {
.profile-container {
overflow: hidden;
position: absolute;
top: 20px;
left: 20px;
}

.profile-img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
}

.icon-img {
width: 50px;
height: 50px;
margin: 5px;
}

.card h1 {
margin-top: 10px;
margin-top: 24px;
font-size: 24px;
margin-bottom: 5px;
}

.card p {
margin-top: 5px;
margin-top: 19px;
font-size: 16px;
color: #555;
}

@media (max-width: 600px) {
.card {
padding: 10px;
}

.card img {
width: 30px;
height: 30px;
margin: 3px;
}

.card h1 {
font-size: 20px;
}

.card p {
font-size: 14px;
}
}
</style>
</head>

<body>
<div class="card">
<a href="https://www.github.com/edurso"><img src="./img/github.png" alt="GitHub Icon"></a>
<a href="https://www.linkedin.com/in/edurso/"><img src="./img/linkedin.png" alt="LinkedIn Icon"></a>
<a href="mailto:edurso@edurso.com"><img src="./img/email.png" alt="Mail Icon"></a>
<div class="profile-container">
<img class="profile-img" src="./img/profile.jpg" alt="Profile Image">
</div>
<a href="https://www.github.com/edurso"><img class="icon-img" src="./img/github.png" alt="GitHub Icon"></a>
<a href="https://www.linkedin.com/in/edurso/"><img class="icon-img" src="./img/linkedin.png" alt="LinkedIn Icon"></a>
<a href="mailto:edurso@edurso.com"><img class="icon-img" src="./img/email.png" alt="Mail Icon"></a>

<h1>Eric D'Urso</h1>
<p>Computer Engineering @ University of Michigan</p>
<p>Software Engineer @ Wolverine Radar Co.</p>
</div>
</body>

</html>
</html>

0 comments on commit e0491c1

Please sign in to comment.