-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
246 lines (235 loc) · 16.1 KB
/
about.html
File metadata and controls
246 lines (235 loc) · 16.1 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Personal Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg-gray-50">
<!-- Header -->
<header class="bg-white shadow-sm">
<div class="container mx-auto px-4 py-4">
<nav class="flex justify-between items-center">
<div class="text-2xl font-bold text-indigo-600">Portfolio</div>
<div class="hidden md:flex space-x-8">
<a href="index.html" class="text-gray-600 hover:text-indigo-600">Home</a>
<a href="about.html" class="text-indigo-600 font-medium">About</a>
<a href="projects.html" class="text-gray-600 hover:text-indigo-600">Projects</a>
<a href="contact.html" class="text-gray-600 hover:text-indigo-600">Contact</a>
</div>
<button id="menu-toggle" class="md:hidden text-gray-600">
<i class="fas fa-bars text-2xl"></i>
</button>
</nav>
</div>
</header>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white">
<div class="container mx-auto px-4 py-2">
<div class="flex flex-col space-y-3 pb-4">
<a href="index.html" class="text-gray-600 hover:text-indigo-600">Home</a>
<a href="about.html" class="text-indigo-600 font-medium">About</a>
<a href="projects.html" class="text-gray-600 hover:text-indigo-600">Projects</a>
<a href="contact.html" class="text-gray-600 hover:text-indigo-600">Contact</a>
</div>
</div>
</div>
<!-- About Section -->
<section class="py-16">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h1 class="text-4xl font-bold text-gray-800 mb-4">About Me</h1>
<div class="w-24 h-1 bg-indigo-600 mx-auto"></div>
</div>
<div class="flex flex-col md:flex-row gap-12">
<div class="md:w-1/3">
<div class="bg-white rounded-xl shadow-lg p-6 mb-8">
<div class="flex justify-center mb-6">
<div class="w-48 h-48 bg-gray-200 rounded-full overflow-hidden border-4 border-indigo-100">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Profile" class="w-full h-full object-cover">
</div>
</div>
<h2 class="text-2xl font-bold text-center text-gray-800 mb-2">Ruby</h2>
<p class="text-indigo-600 text-center mb-6">Frontend Developer & UI/UX Designer</p>
<div class="flex justify-center space-x-4">
<a href="#" class="text-gray-600 hover:text-indigo-600">
<i class="fab fa-github text-2xl"></i>
</a>
<a href="#" class="text-gray-600 hover:text-indigo-600">
<i class="fab fa-linkedin text-2xl"></i>
</a>
<a href="#" class="text-gray-600 hover:text-indigo-600">
<i class="fab fa-twitter text-2xl"></i>
</a>
</div>
</div>
<div class="bg-white rounded-xl shadow-lg p-6">
<h3 class="text-xl font-bold text-gray-800 mb-4">Personal Info</h3>
<ul class="space-y-3">
<li class="flex items-center">
<i class="fas fa-envelope text-indigo-600 mr-3"></i>
<span>ruby@example.com</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone text-indigo-600 mr-3"></i>
<span>+92 300 1234567</span>
</li>
<li class="flex items-center">
<i class="fas fa-map-marker-alt text-indigo-600 mr-3"></i>
<span>Karachi, Pakistan</span>
</li>
<li class="flex items-center">
<i class="fas fa-calendar-alt text-indigo-600 mr-3"></i>
<span>Age: 28</span>
</li>
</ul>
</div>
</div>
<div class="md:w-2/3">
<div class="bg-white rounded-xl shadow-lg p-6 mb-8">
<h2 class="text-2xl font-bold text-gray-800 mb-4">My Bio</h2>
<p class="text-gray-600 mb-4">
Hello! I'm Ruby, a passionate Frontend Developer and UI/UX Designer with over 1 year of experience creating beautiful, responsive websites and applications. I specialize in modern JavaScript frameworks and have a keen eye for design.
</p>
<p class="text-gray-600 mb-4">
My journey in web development started when I was in college, where I discovered my passion for creating digital experiences. Since then, I've worked with startups and established companies to bring their visions to life through clean, efficient code and intuitive user interfaces.
</p>
<p class="text-gray-600 mb-4">
When I'm not coding, you can find me hiking in the mountains, reading tech blogs, or experimenting with new design tools. I believe in continuous learning and staying updated with the latest trends in web development.
</p>
<p class="text-gray-600 mb-4">
میرا نام روبی ہے اور میں ایک فرنٹ ینڈ ڈویلپر ہوں۔ میرے پاس ویب ڈویلپمنٹ میں 1 سال کا تجربہ ہے اور میں نے متعدد منصوبوں پر کام کیا ہے۔ میں HTML، CSS، JavaScript اور React کے استعمال میں ماہر ہوں۔
</p>
<p class="text-gray-600">
میں نئی ٹیکنالوجیوں کو سیکھنے اور اپنے مہارت کو بہتر بنانے کے لیے پرعزم ہوں۔ میرا مقصد صارفین کے لیے اچھا تجربہ فراہم کرنا ہے اور معیاری کام کرنا ہے۔
</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 mb-8">
<h2 class="text-2xl font-bold text-gray-800 mb-6">My Skills</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">HTML5 & CSS3</span>
<span>95%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">JavaScript</span>
<span>90%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">React.js</span>
<span>85%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">UI/UX Design</span>
<span>80%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 80%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">Tailwind CSS</span>
<span>90%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">Node.js</span>
<span>75%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-indigo-600 h-2.5 rounded-full" style="width: 75%"></div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-lg p-6">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Experience & Education</h2>
<div class="relative">
<!-- Vertical line -->
<div class="absolute left-4 top-0 h-full w-0.5 bg-indigo-200 transform translate-x-0"></div>
<!-- Timeline items -->
<div class="ml-10">
<div class="mb-10 relative">
<div class="absolute -left-10 mt-1.5 w-6 h-6 rounded-full bg-indigo-600 border-4 border-white shadow"></div>
<div class="bg-indigo-50 p-4 rounded-lg border-l-4 border-indigo-600">
<span class="text-sm text-indigo-600 font-semibold">2022 - Present</span>
<h3 class="text-xl font-bold text-gray-800 mt-1">Frontend Developer</h3>
<p class="font-medium text-gray-700">Tech Solutions Inc.</p>
<p class="mt-2 text-gray-600">
Developed responsive websites and web applications for various clients using React and Vue.js frameworks.
</p>
</div>
</div>
<div class="mb-10 relative">
<div class="absolute -left-10 mt-1.5 w-6 h-6 rounded-full bg-indigo-600 border-4 border-white shadow"></div>
<div class="bg-indigo-50 p-4 rounded-lg border-l-4 border-indigo-600">
<span class="text-sm text-indigo-600 font-semibold">2021 - 2022</span>
<h3 class="text-xl font-bold text-gray-800 mt-1">Web Developer Intern</h3>
<p class="font-medium text-gray-700">Digital Creations Co.</p>
<p class="mt-2 text-gray-600">
Created and maintained client websites using HTML, CSS, and JavaScript. Collaborated with designers to implement UI/UX designs.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<h2 class="text-2xl font-bold text-indigo-400">Ruby</h2>
<p class="mt-2 text-gray-400">Frontend Developer & UI/UX Designer</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-github text-2xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin text-2xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter text-2xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram text-2xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 Ruby. All rights reserved.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>