forked from suraj9706/links
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (81 loc) · 2.2 KB
/
index.html
File metadata and controls
90 lines (81 loc) · 2.2 KB
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
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<title>My Link in Bio</title>
<style>
body {
padding-top: 40px;
padding-bottom: 40px;
background-color: #004643;
display: flex;
justify-content: center;
}
.banner-image {
display: flex;
justify-content: center;
width: 256px;
height: 256px;
border-radius: 256px;
}
.thumbnail {
width: 48px;
height: 48px;
border-radius: 48px;
object-fit: cover;
}
.name {
color: #fffffe;
display: flex;
justify-content: center;
}
.link, .social-icons {
background-color: #f9bc60;
display: flex;
align-items: center;
padding: 5px;
}
.link a, .social-icons a {
color: #001e1d;
text-decoration: none;
text-align: center;
flex-grow: 1;
}
.items {
display: flex;
flex-direction: column;
gap: 30px;
max-width: 640px;
flex-grow: 1;
}
</style>
</head>
<body>
<div class="items">
<div class="banner">
<img src="https://media.licdn.com/dms/image/D4D03AQEfXeyflJiOrQ/profile-displayphoto-shrink_800_800/0/1697164449899?e=1717027200&v=beta&t=EbdpGa9nVb33HQxHg9z5aX8-u6mh4VuGGeA64fnti3c" alt="Santiago De Z." class="banner-image">
</div>
<div class="name">
Santiago De Zubiría
</div>
<div class="social-icons">
<a href="https://github.com/sdzubiria" target="_blank">
GitHub
</a>
<a href="https://www.linkedin.com/in/santiago-de-zubiría-3a340436/" target="_blank">
LinkedIn
</a>
<a href="https://www.instagram.com/sdzubiria/" target="_blank">
Instagram
</a>
</div>
<div class="link">
<img src="https://ggplot2.tidyverse.org/logo.png" alt="GGPlot2 Logo" class="thumbnail">
<a target="_blank" href="http://r-statistics.co/Top50-Ggplot2-Visualizations-MasterList-R-Code.html">Top GGPlot Visualizations</a>
</div>
<div class="link">
<img src="https://tidyr.tidyverse.org/logo.png" alt="tidyr Logo" class="thumbnail">
<a target="_blank" href="https://static.us.edusercontent.com/files/80JN6a46DONYIkgaKDFuahUp">Cheat Sheet tidyr </a>
</div>
</div>
</body>
</html>