-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jsedy.com</title>
<script src="https://kit.fontawesome.com/1886115f4c.js" crossorigin="anonymous"></script>
<style>
body {
background-color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
a {
display: inline-block;
text-decoration: none;
color: inherit;
}
img {
width: 50%;
height: auto;
display: block;
margin-bottom: 20px;
}
.social-icons {
display: flex;
justify-content: center;
gap: 20px;
}
.social-icons a {
font-size: 2rem;
color: #000;
transition: color 0.3s ease;
}
.social-icons a.linkedin:hover {
color: #0077b5;
}
.social-icons a.twitter:hover {
color: #1da1f2;
}
.social-icons a.medium:hover {
color: #12100E;
}
.social-icons a.github:hover {
color: #171515;
}
.social-icons a.instagram:hover {
color: #E4405F;
}
</style>
</head>
<body>
<img src="images/jsedycom.png" alt="Logo">
<div class="social-icons">
<a href="https://www.linkedin.com/in/jsedy7" class="linkedin" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a href="https://medium.com/@jsedy7" class="medium" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-medium"></i>
</a>
<a href="https://github.com/jsedy7" class="github" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://instagram.com/jsedy7" class="instagram" target="_blank" rel="noopener noreferrer">
<i class="fa-brands fa-instagram"></i>
</a>
</div>
</body>
</html>