-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
566 lines (501 loc) · 23 KB
/
index.html
File metadata and controls
566 lines (501 loc) · 23 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio-Syed Tabrez</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script
src="https://kit.fontawesome.com/a076d05399.js"
crossorigin="anonymous"
></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<link rel="stylesheet" href="./style.css" />
<script src="./script.js" type="text/javascript"></script>
</head>
<body>
<!-- Navigation Section -->
<!-- <nav class="navBar">
<div class="max-width">
<div class="logo">
<a href="./index.html">Portfo<span>lio.</span></a>
</div>
<ul class="menu" >
<li class="nav-btn"><a href="#homePage" >Home</a></li>
<li class="nav-btn"><a href="#about">About</a></li>
<li class="nav-btn"><a href="#carrer">Carrer</a></li>
<li class="nav-btn"><a href="#education">Qualification</a></li>
<li class="nav-btn"><a href="#skills">Skills</a></li>
<li class="nav-btn"><a href="#projects">Projects</a></li>
<li class="nav-btn"><a href="#contact">Contact</a></li>
</ul>
<label class="class-menu-btn" >
<i class="fa fa-bars" > </i>
</label>
</div>
</nav> -->
<!-- Navigation Section -->
<nav class="navBar">
<div class="max-width">
<div class="logo">
<a href="./index.html">Portfo<span>lio.</span></a>
</div>
<!-- <input type="checkbox" id="menu-btn-click" checked="true">
<label class="class-menu-btn" for="menu-btn-click">
<i class="fa fa-bars"> </i>
</label> -->
<ul class="menu" >
<li class="nav-btn"><a href="#homePage" >Home</a></li>
<li class="nav-btn"><a href="#about">About</a></li>
<li class="nav-btn"><a href="#carrer">Carrer</a></li>
<li class="nav-btn"><a href="#education">Qualification</a></li>
<li class="nav-btn"><a href="#skills">Skills</a></li>
<li class="nav-btn"><a href="#projects">Projects</a></li>
<li class="nav-btn"><a href="#contact">Contact</a></li>
</ul>
</div>
<!-- <input type="checkbox" id="sidebar-active">
<label for="sidebar-active">
<label class="class-menu-btn" >
<i class="fa fa-bars" > </i>
</label> -->
</nav>
<!-- Main-Page Section -->
<section class="homePage" id="homePage">
<div class="layout">
<a href="https://www.facebook.com/syed.tabrez.3382/" target="_blank"
><img src="./Media/logo_facebook.png" alt="Facebook-Logo"
/></a>
<a
href="https://www.linkedin.com/in/syed-tabrez-pasha-s-295b8a114/"
target="_blank"
><img src="./Media/logo_linkedIn.png" alt="LinkedIn-Logo"
/></a>
<a href="https://twitter.com/tabrezcool6" target="_blank"
><img src="./Media/logo_twitter.png" alt="Twitter-Logo"
/></a>
<a href="https://github.com/tabrezcool6" target="_blank"
><img src="./Media/logo_gitHub.png" alt="GitHub-logo"
/></a>
</div>
<div class="max-width">
<div class="home-content">
<div class="text-1">Hello, my name is</div>
<div class="text-2">Syed Tabrez Pasha S</div>
<div class="text-3">I'm a <span>Full Stack Developer</span></div>
<!-- <button id="download-cv">Download CV</button> -->
<!-- <button id="contact-me" href="#contact">Contact Me</button> -->
</div>
<div><img src="./Media/My_Picture.png" alt="Syed Picture" /></div>
</div>
</section>
<hr />
<!-- About Section -->
<section class="about" id="about">
<div class="max-width">
<h2 class="title">About me</h2>
<div class="about-content">
<div class="column left">
<img src="./Media/circle_suit_4.png" alt="My Picture" />
</div>
<div class="column right">
<div class="text">I'm Syed Tabrez Pasha S and I'm a Flutter Developer.</div>
<p>
I live in Bengaluru. I completed my Bachelor of Engineering
(Electronics and Communication) from Sambhram Institute of
Technology. I started coding in early 2019 and got a hang of it.
From then I didn't stop. Initially, I started with Android
Development (Java) and created many projects out of which
<a
href="https://play.google.com/store/apps/details?id=com.xsar.handwriter"
target="_blank"
>Handwriter: handwriting app</a
>
is one. Over the time, my interest kept increasing in developing
field and to explore further I started Web Development. Apart from
coding, I mostly like to cook and eat, watch series, travel & read
and write and listen to good music.
</p>
</div>
</div>
</div>
</section>
<hr/>
<!-- Carrer Section -->
<section class="carrer" id="carrer">
<div class="max-width">
<h2 class="title">Carrer</h2>
<div class="screen-center">
<div class="carrer-content">
<div class="column">
<!-- /// -->
<div class="carrer_heading">1. Founder and CEO</div>
<div class="carrer-content2">
<div class="carrer1">
<div class="carrer-row">
<div>
<a class="text-1" href="https://www.sameens.com" target="_blank">Sameen Collections</a>
</div>
<div class="text-3">Sameen Collections is your go-to online destination for premium women's bags, clutches and other accessories. Our website and mobile app offer a curated collection of stylish, high-quality accessories designed to complement every woman's unique style and needs. Whether you're looking for the perfect evening clutch, an everyday handbag, or something in between, we provide a seamless shopping experience with a diverse range of options to suit all occasions.<br>With a focus on quality, craftsmanship, and trendy designs, we aim to empower women to express their personal style confidently. Our user-friendly platform ensures easy browsing, secure checkout, and fast delivery, bringing the best of fashion directly to your doorstep.<br><br>Skills: Flutter · PHP · SQL Database · Software Development · Project Management · API Integration · State Management</div>
<div class="carrer-inner-row">
<div class="text-2">Bengaluru, Karnataka</div>
<div class="text-2">Oct 2023 - Present</div>
</div>
</div>
</div>
</div>
<br>
<!-- /// -->
<div class="carrer_heading">2. Flutter Developer</div>
<div class="carrer-content2">
<div class="carrer1">
<div class="carrer-row">
<div>
<a class="text-1" href="http://www.ibuild.in" target="_blank">iBuild Software Solutions · Full-time</a>
</div>
<div class="text-3">* I have successfully integrated ERP systems into mobile applications. The app contains features like updating attendance, real time location tracking, admin access, background tasks, getting attendance details etc.br <br>* I have developed an integrated system, known as the Intranet System, which facilitates real time communication among users within a closed network using socket.IO<br><br>Skills: Flutter · Software Development · Project Management · API Integration · State Management · Teamwork</div>
<div class="carrer-inner-row">
<div class="text-2">Bengaluru, Karnataka</div>
<div class="text-2">July 2022 - Present</div>
</div>
</div>
</div>
</div>
<br>
<!-- /// -->
<div class="carrer_heading">3. Sales Associate</div>
<div class="carrer-content2">
<div class="carrer1">
<div class="carrer-row">
<div>
<div class="text-1">Sameer Collections · Part-time</div>
</div>
<div class="text-3">I have accumulated over fifteen years of experience in sales at a retail establishment operated by my family. This business specializes in the retail sale of men's clothing, school bags, travel bags, women's handbags, clutches, men's accessories, and handlooms.
<br><br>
Skills: Sales · Sales Management · Sales Operations · Direct Sales · Sales Processes · Retail Sales</div>
<div class="carrer-inner-row">
<div class="text-2">Bengaluru, Karnataka</div>
<div class="text-2">Jan 2010 - Present</div>
</div>
</div>
</div>
</div>
<br>
<!-- /// -->
<div class="carrer_heading">4. Flutter Developer</div>
<div class="carrer-content2">
<div class="carrer1">
<div class="carrer-row">
<div>
<a class="text-1" href="https://www.thecompanycheck.com/company/madvistara-private-limited/U72900KA2022PTC159416" target="_blank">Madvistara Software Solutions · Full-time</a>
</div>
<div class="text-3">
<!-- I have accumulated over fifteen years of experience in sales at a retail establishment operated by my family. This business specializes in the retail sale of men's clothing, school bags, travel bags, women's handbags, clutches, men's accessories, and handlooms.
<br><br> -->
Skills: Firebase · Postman API · Flutter · API Integration · Database</div>
<div class="carrer-inner-row">
<div class="text-2">Bengaluru, Karnataka</div>
<div class="text-2">Jan 2022 - June 2022</div>
</div>
</div>
</div>
</div>
<br>
<!-- /// -->
<div class="carrer_heading">5. Front End Developer Trainee</div>
<div class="carrer-content2">
<div class="carrer1">
<div class="carrer-row">
<div>
<a class="text-1" href="https://www.linkedin.com/company/reformx/posts/?feedView=all" target="_blank">REFORMX · Internship</a>
</div>
<div class="text-3">I havesuccessfully completed an Internship and gained a hands on experience in developing websites using HTML, CSS, Bootstrap, JavaScript. Also have completed 3-4 Projects based on this.<br><br>Skills: Bootstrap · HTML5 · Front-End Development · JavaScript · Cascading Style Sheets (CSS)</div>
<div class="carrer-inner-row">
<div class="text-2">Bengaluru, Karnataka</div>
<div class="text-2">Sept 2021 - Jan 2022</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<hr />
<!-- Education Section -->
<section class="education" id="education">
<div class="max-width">
<h2 class="title">Qualification</h2>
<div class="screen-center">
<div class="education-content">
<div class="column">
<div class="edu_heading">Education</div>
<div class="education-content2">
<div class="edu1">
<img src="./Media/education_template.png" alt="" />
<div class="edu-row">
<div>
<div class="text-1">Bachelor of Engineering (ECE)</div>
<div class="text-2">Sambhram Institue of Technology</div>
</div>
<div class="inner-row">
<div class="text-3">2016-2021</div>
<div class="text-4">6.3 CGPA</div>
</div>
</div>
</div>
<div class="edu1">
<img src="./Media/education_template.png" alt="" />
<div class="edu-row">
<div>
<div class="text-1">
Pre University College (Science, PCME)
</div>
<div class="text-2">Mahesh PU College</div>
</div>
<div class="inner-row">
<div class="text-3">2014-2016</div>
<div class="text-4">76.58%</div>
</div>
</div>
</div>
<div class="edu1">
<img src="./Media/education_template.png" alt="" />
<div class="edu-row">
<div>
<div class="text-1">
Secondary School Leaving Certificate
</div>
<div class="text-2">Kiran High School</div>
</div>
<div class="inner-row">
<div class="text-3">2002-2014</div>
<div class="text-4">88.64%</div>
</div>
</div>
</div>
</div>
</div>
<div class="column">
<div class="edu_heading">Internship and Experience</div>
<div class="education-content2">
<div class="edu1">
<img src="./Media/education_template.png" alt="" />
<div class="edu-row">
<div>
<div class="text-1">Front End Development Trainee</div>
<div class="text-2">ReformX Consulting Private Limited</div>
</div>
<div class="text-3">2021</div>
</div>
</div>
<div class="edu1">
<img src="./Media/education_template.png" alt="" />
<div class="edu-row">
<div>
<div class="text-1">Internet of Things(IoT)</div>
<div class="text-2">ExpertsHub</div>
</div>
<div class="text-3">2019</div>
</div>
</div>
<div class="edu1">
<img src="./Media/education_template.png" alt="" />
<div class="edu-row">
<div>
<div class="text-1">
Field Technician-Computing and Periferals
</div>
<div class="text-2">Rooman Technologies(PMKVY)</div>
</div>
<div class="text-3">2018</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<hr />
<!-- Skills Section -->
<section class="skills" id="skills">
<div class="max-width">
<h2 class="title">My Skills</h2>
<div class="skills-content">
<div class="columns">
<div class="bars">
<div class="info"><span>Flutter</span><span>90%</span></div>
<div class="line html"></div>
</div>
<div class="bars">
<div class="info"><span>PHP, SQL</span><span>60%</span></div>
<div class="line android"></div>
</div>
<div class="bars">
<div class="info"><span>HTML, CSS, JS</span><span>70%</span></div>
<div class="line js"></div>
</div>
<div class="bars">
<div class="info"><span>Node.JS</span><span>80%</span></div>
<div class="line react"></div>
</div>
</div>
<div class="columns">
<div class="bars">
<div class="info"><span>Java</span><span>70%</span></div>
<div class="line java"></div>
</div>
<div class="bars">
<div class="info"><span>Android</span><span>60%</span></div>
<div class="line android"></div>
</div>
<div class="bars">
<div class="info"><span>XML</span><span>80%</span></div>
<div class="line xml"></div>
</div>
<div class="bars">
<div class="info"><span>Git</span><span>80%</span></div>
<div class="line git"></div>
</div>
</div>
</div>
</div>
</section>
<hr />
<!-- Projects Section -->
<section class="projects" id="projects">
<div class="max-width">
<h2 class="title">My Projects</h2>
<div class="projects-content">
<div class="card">
<div class="box">
<a href="https://www.sameens.com" target="_blank"
><img src="./Media/project4.png" alt="" /></a>
<div class="text"><h3>Sameen Collections<br> (Flutter)</h3></div>
<p>The Mobile and Web App is built using Flutter, SQL Database and is built as a E-Commerce App.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://play.google.com/store/apps/details?id=com.xsar.handwriter" target="_blank"
><img src="./Media/project1.png" alt="Project 1"
/></a>
<div class="text"><h3>Handwriter: Handwriting app <br> (Android)</h3></div>
<p>
Handwriter is font converter app which uses image from camera,
imported from gallery to convert it into text file. It is built on Android Studio Framework. It is developed using Java, XML, Firebase, Photoshop, Adobe XD.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/tabrezcool6/iTask-ToDoListApp" target="_blank"
><img src="./Media/project2.png" alt="" /></a>
<div class="text"><h3>iTask - To Do List Application<br>(Android)</h3></div>
<p>The application is developed using Android Studio to plan daily tasks you don’t want to miss out. It has User Login and Log-out functionality implemented. The user can add their tasks and it gets stored in Realtime Firebase Database.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/tabrezcool6/Connect--A-Web-Chat-API" target="_blank"
><img src="./Media/project3.png" alt="" /></a>
<div class="text"><h3>Connect - A Web Chat API<br> (Website)</h3></div>
<p>The API is built using JavaScript, Node Server & Socket.IO and is built to allow the users to communicate in real-time using easily accessible web interfaces.
</p>
</div>
</div>
<!--
<div class="card">
<div class="box">
<i class="fas fas-1"><img src="./Media/project1.png" alt=""></i>
<div class="text"><h3></h3></div>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Voluptate rerum doloremque provident beatae soluta aspernatur!</p>
</div>
</div> -->
</div>
</div>
</section>
<hr />
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="max-width">
<h2 class="title">Contact Me</h2>
<div class="contact-content">
<div class="column left">
<div class="text">Get in touch</div>
<p>
If you need to know more details about me or have any questions, please feel free to drop me a message. I'll get back to you as soon as I can.
</p>
<div class="icons">
<div class="row">
<i class="fa fa-user"
></i>
<div class="info">
<div class="head">Name</div>
<div class="sub-title">Syed Tabrez Pasha S</div>
</div>
</div>
<div class="row">
<i class="fa fa-user"
></i>
<div class="info">
<div class="head">Address</div>
<div class="sub-title">Bangalore, Karnataka</div>
</div>
</div>
<div class="row">
<i class="fa fa-user"
></i>
<div class="info">
<div class="head">E-mail</div>
<div class="sub-title">tabrezcool6@gmail.com</div>
</div>
</div>
</div>
</div>
<div class="column right">
<div class="text">Message me</div>
<form action="#">
<div class="fields">
<div class="field name">
<input type="text" placeholder="Enter your name" required />
</div>
<div class="field email">
<input
type="email"
placeholder="Enter your e-mail"
required
/>
</div>
</div>
<div class="field">
<input type="text" placeholder="Subject" required />
</div>
<div class="field textarea">
<textarea
cols="30"
rows="10"
placeholder="Describe project..."
required
></textarea>
</div>
<div class="button">
<button type="submit">Send message</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<Footer>
<div class="footer"></div>
<div class="max-width">
<h2 class="footerTitle">© Syed Tabrez Pasha S. All Rights Reserved</h2>
</div>
</Footer>
</body>
</html>