-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfooter_V2.html
64 lines (60 loc) · 2.57 KB
/
footer_V2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Author Information</title>
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<style>
/* Center-align text and icons */
.center-text {
text-align: center;
}
/* Style social media icons */
.fa, .fab, .bluesky-icon {
display: inline-block;
width: 40px; /* Adjusted size */
height: 40px; /* Adjusted size */
line-height: 40px; /* Center icon vertically */
font-size: 20px; /* Adjusted font size */
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius: 50%;
}
.fa:hover, .fab:hover, .bluesky-icon:hover {
opacity: 0.7;
}
.fa-twitter { background: #55acee; color: white; }
.fa-linkedin { background: #007bb5; color: white; }
.fa-github { background: #333; color: white; }
.fa-kaggle { background: #20beff; color: white; }
.fa-gitlab { background: #e24329; color: white; }
.bluesky-icon {
font-size: 20px;
width: 40px;
height: 40px;
line-height: 40px;
background: #1da1f2; /* Optional color matching Bluesky theme */
color: white;
border-radius: 50%;
}
</style>
</head>
<body>
<hr />
<p class="center-text">A work by <a href="https://www.linkedin.com/in/santiagomota/" target="_blank" rel="noopener noreferrer">Santiago Mota</a></p>
<p class="center-text"><span style="color: #808080;"><em>[email protected]</em></span></p>
<p class="center-text">
<a href="https://www.linkedin.com/in/santiagomota/" class="fa fa-linkedin" target="_blank" rel="noopener noreferrer"></a>
<a href="https://github.com/santiagomota" class="fa fa-github" target="_blank" rel="noopener noreferrer"></a>
<a href="https://gitlab.com/smota" class="fa fa-gitlab" target="_blank" rel="noopener noreferrer"></a>
<a href="https://www.kaggle.com/santiagomota" class="fab fa-kaggle" target="_blank" rel="noopener noreferrer"></a>
<a href="https://bsky.app/profile/santiago-mota.bsky.social" class="bluesky-icon" target="_blank" rel="noopener noreferrer" title="Bluesky">🦋</a>
<a href="https://twitter.com/mota_santiago" class="fa fa-twitter" target="_blank" rel="noopener noreferrer"></a>
</p>
</body>
</html>