-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (113 loc) · 2.8 KB
/
index.html
File metadata and controls
133 lines (113 loc) · 2.8 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Linklet</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: radial-gradient(circle at top, #1b2735, #090a0f);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
}
.card {
width: 100%;
max-width: 420px;
padding: 28px 22px;
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(14px);
border-radius: 18px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
text-align: center;
}
.avatar {
width: 90px;
height: 90px;
border-radius: 50%;
margin: 0 auto 14px;
background: linear-gradient(135deg, #0a2f2c, #45488a);
}
h1 {
margin: 6px 0 2px;
font-size: 1.6rem;
font-weight: 700;
}
p {
margin: 0 0 22px;
font-size: 0.95rem;
opacity: 0.8;
}
.links {
display: flex;
flex-direction: column;
gap: 14px;
}
.link {
position: relative;
text-decoration: none;
color: #fff;
padding: 15px 18px;
border-radius: 14px;
font-weight: 600;
letter-spacing: 0.3px;
background: linear-gradient(
135deg,
rgba(255, 255, 255, 0.18),
rgba(255, 255, 255, 0.05)
);
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.25),
0 8px 20px rgba(0, 0, 0, 0.35);
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.link:hover {
transform: translateY(-2px);
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.3),
0 14px 28px rgba(0, 0, 0, 0.45);
}
.link:active {
transform: translateY(0);
box-shadow:
inset 0 2px 6px rgba(0, 0, 0, 0.35);
}
footer {
margin-top: 24px;
font-size: 0.75rem;
opacity: 0.55;
}
</style>
</head>
<body>
<div class="card">
<div class="avatar"></div>
<h1>LINKLET BY SIVARIO.B</h1>
<p>Dev-ops • Automation • Cloud</p>
<div class="links">
<a class="link" href="ENTER_LINK_HERE" target="_blank" rel="noopener noreferrer">
Instagram
</a>
<a class="link" href="ENTER_LINK_HERE" target="_blank" rel="noopener noreferrer">
GitHub
</a>
<a class="link" href="ENTER_LINK_HERE" target="_blank" rel="noopener noreferrer">
Pinterest
</a>
<a class="link" href="ENTER_LINK_HERE" target="_blank" rel="noopener noreferrer">
LinkedIn
</a>
</div>
<footer>
© 2026 YOUR_NAME_HERE
</footer>
</div>
</body>
</html>