-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
506 lines (495 loc) · 18.9 KB
/
index.html
File metadata and controls
506 lines (495 loc) · 18.9 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rishabh Abhani</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"
integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./MobileStyles/mobile-style.css" />
<link rel="stylesheet" href="./MobileStyles/mobile-main-style.css" />
<!-- Font Awesome JS -->
<script
defer
src="https://use.fontawesome.com/releases/v5.0.13/js/solid.js"
integrity="sha384-tzzSw1/Vo+0N5UhStP3bvwWPq+uvzCMfrN1fEFe+xBmv1C/AtVX5K0uZtmcHitFZ"
crossorigin="anonymous"
></script>
<script
defer
src="https://use.fontawesome.com/releases/v5.0.13/js/fontawesome.js"
integrity="sha384-6OIrr52G08NpOFSZdxxz1xdNSndlD4vdcf/q2myIUVO0VsqaGHJsB0RaBE01VTOY"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="flex-body">
<!-- Side navigation -->
<div class="sidenav list-group list-group-flush" id="sidenav">
<a
href="#home"
id="home-nav"
class="list-group-item list-group-item-action active"
>
<span class="nav-ui">
<i class="fas fa-home"></i>
<span class="nav_text">Home</span>
</span>
</a>
<a
href="#profile"
id="profile-nav"
class="list-group-item list-group-item-action"
>
<span class="nav-ui">
<i class="fas fa-user"></i>
<span class="nav_text"> Profile</span>
</span>
</a>
<a
href="#project"
id="project-nav"
class="list-group-item list-group-item-action"
>
<span class="nav-ui">
<i class="fas fa-project-diagram"></i>
<span class="nav_text"> Projects</span>
</span>
</a>
<a
href="#technology"
id="technology-nav"
class="list-group-item list-group-item-action"
>
<span class="nav-ui">
<i class="fas fa-cubes"></i>
<span class="nav_text"> Technology</span>
</span>
</a>
<a
href="#education"
id="education-nav"
class="list-group-item list-group-item-action"
>
<span class="nav-ui">
<i class="fas fa-graduation-cap"></i>
<span class="nav_text"> Education</span>
</span>
</a>
<a
href="#connect"
id="connect-nav"
class="list-group-item list-group-item-action"
>
<span class="nav-ui">
<i class="fas fa-share-alt"></i>
<span class="nav_text"> Connect</span>
</span>
</a>
</div>
<!-- Page content -->
<div class="main">
<!-- Main Page Starts Here -->
<div
class="content"
data-spy="scroll"
data-target="#sidenav"
data-offset="5"
>
<div class="home-page slate-view text-center" id="home">
<div class="home-text">
<h1>WELCOME!</h1>
<h4>Scroll below to know more about me!!</h4>
</div>
</div>
<!-- Profile Page -->
<div class="profile-page slate-view text-center" id="profile">
<h1>PROFILE</h1>
<div class="profile-container">
<div class="profile-about">
<img class="profile-picture" src="profile_picture.jpg" alt="" />
<br />
<div class="profile-about-content">
<h3>About me:</h3>
<p>
A simple tech enthusiast who loves studying new
technologies.
<br />
Inspired by games like Assassin's Creed, I began learning
Game design and was quickly bulldozed by the complexity of
doing so. All defeated, I went to the roots of the task and
started learning about programming and technology.
<br />
Now, I have one game Zap, published on play-store and another under Development
all under my developmer handle, <br />
RAPHANI SOFTWARES.
</p>
</div>
</div>
<div class="profile-details">
<ul>
<li>
<label>Name</label>
<div class="value">
<p>Rishabh Abhani</p>
</div>
</li>
<li>
<label>Birthday</label>
<div class="value">
<p>17 December 1999</p>
</div>
</li>
<li>
<label>Titles</label>
<div class="value">
<p>
Gameplay Programmer<br />
Full-Stack Developer<br />
Mobile Application Developer<br />
</p>
</div>
</li>
<li>
<label>Locations</label>
<div class="value">
<p>
Surat, Gujarat [Home]<br />
Chennai, Tamil Nadu [University]
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Project Page -->
<div class="project-page slate-view text-center" id="project">
<h1>PROJECTS</h1>
<div class="row row-cols-1 row-cols-md-4">
<div class="col col-md-4 col-12 mb-4">
<div class="card h-100">
<div class="embed-responsive embed-responsive-16by9">
<img
alt="Card image cap"
class="card-img-top embed-responsive-item"
src="./Projects/battleships.png"
/>
</div>
<div class="card-body">
<h5 class="card-title">Battleships</h5>
<p class="card-text">
Game made using Turbo C++ as a School Project. Data
Structures and Pointers were the main technological
feature.
</p>
<button class="btn btn-outline-danger" disabled>
Unavailable
</button>
</div>
</div>
</div>
<div class="col col-md-4 col-12 mb-4">
<div class="card h-100">
<div class="embed-responsive embed-responsive-16by9">
<img
alt="Card image cap"
class="card-img-top embed-responsive-item"
src="./Projects/zap.png"
/>
</div>
<div class="card-body">
<h5 class="card-title">Zap</h5>
<p class="card-text">
2D arcade-game made with Unity Game Engine. Features
difficulty modes, customizations and leaderboards
[Playgames-API].
</p>
<a
href="https://play.google.com/store/apps/details?id=com.RPS.Zap&hl=en_IN"
class="btn btn-success"
>
Get on Play Store
</a>
</div>
</div>
</div>
<div class="col col-md-4 col-12 mb-4">
<div class="card h-100">
<div class="embed-responsive embed-responsive-16by9">
<img
alt="Card image cap"
class="card-img-top embed-responsive-item"
src="./Projects/galaxy-clock.png"
/>
</div>
<div class="card-body">
<h5 class="card-title">Galaxy Clock</h5>
<p class="card-text">
Clock Project for the Flutter clock challenge. Designed
for lenovo smart clock inspired by Galaxy. Studied Custom
Painters in great detail due the same.
</p>
<a
class="btn btn-success"
href="https://www.credential.net/2c140cc2-967d-428f-95f5-390074342508"
>
Check Credential
</a>
</div>
</div>
</div>
<div class="col col-md-4 col-12 mb-4">
<div class="card h-100">
<img
src="..."
class="card-img-top"
alt="no preview currently unavailable"
/>
<div class="card-body">
<h5 class="card-title">Space-Shooter [WIP]</h5>
<p class="card-text">
2D arcade-game made with Unity Game Enigne. Features
customizations and leaderboards [Playgames-API]. <br />
</p>
<button class="btn btn-outline-primary" disabled>
Under Development
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Technology Page -->
<div class="technology-page slate-view" id="technology">
<h1>TECHNOLOGY</h1>
<article>
<h2>Languages</h2>
<ul class="item-list">
<li class="top-skill">
<img src="./Thumbnails/c++.png" alt="" />
<span>C++</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li class="top-skill">
<img src="./Thumbnails/CSharp.png" alt="" />
<span>C#</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li>
<img src="./Thumbnails/c.jpg" alt="" />
<span>C</span>
</li>
<li class="top-skill">
<img src="./Thumbnails/python.png" alt="" />
<span>Python</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li>
<img src="./Thumbnails/java.png" alt="" />
<span>Java</span>
</li>
<li>
<img src="./Thumbnails/js.png" alt="" />
<span>JavaScript</span>
</li>
<li>
<img src="./Thumbnails/kotlin.png" alt="" />
<span>Kotlin</span>
</li>
<li class="top-skill">
<img src="./Thumbnails/dart.png" alt="" />
<span>Dart</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li class="top-skill">
<img src="./Thumbnails/html.png" alt="" />
<span>HTML</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li>
<img src="./Thumbnails/css.png" alt="" />
<span>CSS3</span>
</li>
</ul>
</article>
<article>
<h2>Frameworks</h2>
<ul class="item-list">
<li>
<img src="./Thumbnails/angular.png" alt="" />
<span>Angular</span>
</li>
<li>
<img src="./Thumbnails/bootstrap.png" alt="" />
<span>Bootstrap</span>
</li>
<li>
<img src="./Thumbnails/material-design.png" alt="" />
<span>Material Design</span>
</li>
<li class="top-skill">
<img src="./Thumbnails/django.png" alt="" />
<span>Django</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li class="top-skill">
<img src="./Thumbnails/flutter.png" alt="" />
<span>Flutter</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li>
<img src="./Thumbnails/react.png" alt="" />
<span>React</span>
</li>
</ul>
</article>
<article>
<h2>Tools</h2>
<ul class="item-list">
<li class="top-skill">
<img src="./Thumbnails/android-studio.png" alt="" />
<span>Android Studio</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li>
<img src="./Thumbnails/node.png" alt="" />
<span>Node</span>
</li>
<li>
<img src="./Thumbnails/Sublime.png" alt="" />
<span>Sublime</span>
</li>
<li class="top-skill">
<img src="./Thumbnails/unity.png" alt="" />
<span>Unity</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li>
<img src="./Thumbnails/unreal-engine.png" alt="" />
<span>Unreal Engine 4</span>
</li>
<li>
<img src="./Thumbnails/visual-studio.png" alt="" />
<span>Visual Studio</span>
</li>
<li>
<img src="./Thumbnails/vs-code.png" alt="" />
<span>Visual Studio Code</span>
</li>
</ul>
</article>
<article>
<h2>Design Tools</h2>
<ul class="item-list">
<li>
<img src="./Thumbnails/3ds.png" alt="" />
<span>Autodesk 3DS</span>
</li>
<li class="top-skill">
<img src="./Thumbnails/adobe-illustrator.png" alt="" />
<span>Adobe Illustrator</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li>
<img src="./Thumbnails/after-effects.png" alt="" />
<span>Adobe After Effecs</span>
</li>
<li>
<img src="./Thumbnails/blender.png" alt="" />
<span>Blender</span>
</li>
<li>
<img src="./Thumbnails/dreamweaver.png" alt="" />
<span>Adobe DreamWeaver</span>
</li>
<li>
<img src="./Thumbnails/Sketch-up.png" alt="" />
<span>Sketch Up</span>
</li>
<li class="top-skill">
<img src="./Thumbnails/xd.png" alt="" />
<span>Adobe XD</span>
<span class="top-skill-tag">Top Skil</span>
</li>
<li>
<img src="./Thumbnails/Zbrush.png" alt="" />
<span>ZBrush</span>
</li>
</ul>
</article>
</div>
<!-- Education Page -->
<div class="education-page slate-view" id="education">
<h1>EDUCATION</h1>
<article>
<img src="srm.png" alt="" />
<div class="education-detail">
<h2>SRM Institute of Science and Technology, Chennai</h2>
<h4>B.Tech - Computer Science and Engineering</h4>
<p>July 2019 - [May 2023]</p>
</div>
</article>
<article>
<img src="dps.png" alt="" />
<div class="education-detail">
<h2>Delhi Public School, Surat</h2>
<h4>Higher Secondary School</h4>
<p>April 2016 - May 2018</p>
</div>
</article>
</div>
<!-- Connect Page -->
<div class="connect-page slate-view text-center" id="connect">
<div class="connections">
<h1>CONNECT</h1>
<div class="social-profile">
<ul>
<li id="github">
<a href="https://github.com/rishabhabhani">
<img src="./Connections/github.png" alt="" />
</a>
</li>
<li id="linkedin">
<a href="https://www.linkedin.com/in/rishabh-abhani">
<img src="./Connections/linkedin.png" alt="" />
</a>
</li>
<li id="twitter">
<a href="https://twitter.com/AbhaniRishabh">
<img src="./Connections/twitter.png" alt="" />
</a>
</li>
<li id="instagram">
<a href="https://www.instagram.com/rishabh_abhani/">
<img src="./Connections/instagram.png" alt="" />
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- SCRIPTS INCLUSION FOR BOOTSTRAP -->
<script
src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"
></script>
</body>
</html>