-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlink.html
118 lines (106 loc) · 2.91 KB
/
link.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyberpunk Link in Bio</title>
<style>
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Orbitron', sans-serif; /* Futuristic font */
background: #0f0f1e; /* Dark cyberpunk background */
color: #00ffc6; /* Neon green text */
text-align: center;
padding: 20px;
overflow: hidden;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
border-radius: 12px;
background: linear-gradient(145deg, #141432, #090912); /* Neon glowing card */
box-shadow: 0 4px 30px rgba(0, 255, 198, 0.5), inset 0 0 10px rgba(0, 255, 198, 0.3);
}
.profile-img {
width: 120px;
height: 120px;
border-radius: 50%;
margin: 0 auto 20px;
border: 2px solid #00ffc6;
box-shadow: 0 0 15px #00ffc6;
}
.name {
font-size: 2rem;
color: #ff2bd7; /* Neon pink */
margin-bottom: 10px;
text-shadow: 0 0 8px #ff2bd7;
}
.bio {
font-size: 1rem;
color: #00ffc6;
margin-bottom: 20px;
}
.links a {
display: block;
text-decoration: none;
margin: 15px 0;
padding: 15px;
font-size: 1.1rem;
font-weight: bold;
color: #fff;
background: linear-gradient(90deg, #ff2bd7, #00ffc6);
border-radius: 10px;
box-shadow: 0 0 10px #00ffc6;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.links a:hover {
transform: scale(1.1);
box-shadow: 0 0 20px #ff2bd7, 0 0 30px #00ffc6;
}
/* Responsive Design */
@media (max-width: 768px) {
.profile-img {
width: 90px;
height: 90px;
}
.name {
font-size: 1.5rem;
}
.bio {
font-size: 0.9rem;
}
}
/* Add Futuristic Glow */
@keyframes neonGlow {
0%, 100% {
text-shadow: 0 0 10px #00ffc6, 0 0 20px #00ffc6;
}
50% {
text-shadow: 0 0 20px #ff2bd7, 0 0 40px #ff2bd7;
}
}
.name {
animation: neonGlow 2s infinite;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<img src="_eeb56137-8c88-4012-b40f-396921858abf.jpeg" alt="Profile Picture" class="profile-img">
<div class="name">NIHAL KRISHNA</div>
<div class="bio">Create your digital services with us</div>
<div class="links">
<a href="https://nihal-krishna-official.vercel.app" target="_blank">Visit My Website</a>
<a href="https://www.instagram.com/n4ni_hal_?igsh=bnBmaGs2N2J5Zm1i" target="_blank">Follow Me on Instagram</a>
<a href="https://t.me/NK_V2_BOT" target="_blank">Telegram Chat bot</a>
</div>
</div>
</body>
</html>