-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (71 loc) · 2.16 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
<!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: Ubuntu, 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: right;
max-width: 600px;
position: relative;
}
.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: 24px;
font-size: 24px;
margin-bottom: 5px;
}
.card p {
margin-top: 19px;
font-size: 16px;
color: #555;
}
</style>
</head>
<body>
<div class="card">
<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:[email protected]"><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>Systems Engineer @ Wolverine Radar Co.</p>
</div>
</body>
</html>