-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
221 lines (192 loc) · 7 KB
/
index.html
File metadata and controls
221 lines (192 loc) · 7 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<html lang="en">
<head>
<title>Resbin | Official Portfolio</title>
<meta name="title" content="Resbin | Official Portfolio">
<meta name="description" content="Discover the work, skills, and projects of Resbin. Exploring the science of technology and programming.">
<meta name="google-site-verification" content="hXw9p7pZgSo16qL19m7I71P8GyMIi9lMDcsvZPSYJJY" />
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.resbin.in/">
<meta property="og:title" content="Resbin | Official Portfolio">
<meta property="og:description" content="Official portfolio of Resbin. Explore my projects and skills.">
<meta property="og:image" content="https://www.resbin.in/og-image.jpg">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://www.resbin.in/">
<meta property="twitter:title" content="Resbin | Official Portfolio">
<meta property="twitter:description" content="Official portfolio of Resbin. Explore my projects and skills.">
<link rel="canonical" href="https://www.resbin.in/" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🚀</text></svg>">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resbin Sabah | Portfolio</title>
<style>
/* Background setup */
#star-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1; /* Keeps stars behind your text */
background: radial-gradient(circle at bottom, #111 0%, #050505 100%);
overflow: hidden;
}
.star {
position: absolute;
background: white;
border-radius: 50%;
opacity: 0.5;
animation: twinkle var(--duration) infinite;
}
@keyframes twinkle {
0%, 100% { opacity: 0.3; }
50% { opacity: 1; }
}
body {
background-color: #0f0f0f;
color: #ffffff;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
margin: 0;
scroll-behavior: smooth;
}
section {
padding: 100px 20px;
max-width: 900px;
margin: 0 auto;
}
h1, h2 { font-weight: 700; color: #fff; }
p { color: #a0a0a0; font-size: 1.1rem; }
/* Navigation */
nav {
position: fixed;
top: 0; width: 100%;
background: rgba(15, 15, 15, 0.9);
padding: 20px;
text-align: center;
z-index: 1000;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-weight: 500;
transition: 0.3s;
}
nav a:hover { color: #3498db; }
/* Hero Section */
#home {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
/* Skills/Portfolio Grid */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 30px;
}
.card {
background: #1a1a1a;
padding: 25px;
border-radius: 8px;
border: 1px solid #333;
transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }
/* Contact Links */
.social-links a {
display: inline-block;
margin-right: 20px;
color: #3498db;
text-decoration: none;
}
footer { text-align: center; padding: 50px; color: #555; font-size: 0.9rem; }
</style>
</head>
<body>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
<section id="home">
<h1 style="font-size: 3rem; letter-spacing: -1px;">Hi, IM RESBIN SABAH</h1>
<p>I am a designer/developer</p>
<a href="#about" style="color:#fff; margin-top:20px;">Scroll to learn more ↓</a>
</section>
<section id="about">
<h2>About me</h2>
<p>
Im an electrical engineer passionate about softwares.
I love exploring the science behind
how things work and I am constantly in search of new opportunities
to discover and explore the unknown.
</p>
<p>
My work is driven by a desire to understand the world and find
innovative ways to improve it through technology and design.
</p>
</section>
<section id="skills">
<h2>Skills</h2>
<div class="grid">
<div class="card"><strong>Programming</strong><br>C++, Python, JavaScript, React, Vite</div>
<div class="card"><strong>Design</strong><br>UI/UX, Figma, Adobe Suite</div>
<div class="card"><strong>Soft Skills</strong><br>Leadership, Problem Solving</div>
</div>
</section>
<section id="portfolio">
<h2>Portfolio</h2>
<div class="grid">
<a href="https://gig-finder-india.vercel.app/install" style="text-decoration: none; color: inherit;">
<div class="card">
<h3 style="margin-bottom: 0;">odd jobs</h3> <p class="role">Cofounder</p>
<p>An online marketplace for gigworkers.</p>
</div>
</a>
<a href="https://eventlens-kappa.vercel.app/" style="text-decoration: none; color: inherit;">
<div class="card">
<h3 style="margin-bottom: 0;">Eventlens</h3> <p class="role">Founder</p>
<p>An advanced photosharing platform.</p>
</div>
</a>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<div class="social-links">
<a href="https://github.com/resbin69">GitHub</a>
<a href="https://www.linkedin.com/in/resbinsabah02/">LinkedIn</a>
<a href="mailto:resbin02@gmail.com">Email</a>
</div>
</section>
<footer>
© 2024 - 2026 • RESBIN SABAH • All rights reserved
</footer>
<div id="star-container"></div>
<script>
const container = document.getElementById('star-container');
const starCount = 150;
for (let i = 0; i < starCount; i++) {
const star = document.createElement('div');
star.className = 'star';
// Random position and size
const size = Math.random() * 3 + 'px';
star.style.width = size;
star.style.height = size;
star.style.left = Math.random() * 100 + '%';
star.style.top = Math.random() * 100 + '%';
// Random twinkle speed
star.style.setProperty('--duration', Math.random() * 3 + 2 + 's');
container.appendChild(star);
}
</script>
</body>
</html>