-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
547 lines (505 loc) · 14.5 KB
/
index.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
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
<!--
hi im thiunuwan !
It's nice to see u here ;)
-->
<!-- <pre> </pre> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Thiunuwan</title>
<link
rel="icon"
type="image/png"
href="img/favi.png" />
<meta
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
name="viewport" />
<meta
content="ie=edge"
http-equiv="X-UA-Compatible" />
<link
href="https://fonts.googleapis.com"
rel="preconnect" />
<link
crossorigin
href="https://fonts.gstatic.com"
rel="preconnect" />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap"
rel="stylesheet" />
<link
href="styles.css"
rel="stylesheet" />
<link
crossorigin="anonymous"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
rel="stylesheet" />
</head>
<body>
<header>
<section class="container">
<div
class="header d-flex justify-content-between pb-2 pt-3"
style="
position: fixed;
left: 0;
top: 0;
width: 100%;
background-color: rgb(56, 57, 59);
">
<span>
<a
class="header_home"
style="cursor: default">
<span
class="custom_text"
style="margin-left: 8vw"
>thiunuwan</span
>
<br />
<span class="visuallyhidden">(to home page)</span>
</a>
</span>
<nav
class="header_nav d-none d-md-flex align-items-center gap-5"
style="margin-right: 200px">
<a href="#home">Home</a>
<!-- <a href="">About</a> -->
<a href="#projects">Projects</a>
<a
href="#contact"
class="me-5"
>Contact</a
>
</nav>
</div>
</section>
<script src="script.js"></script>
</header>
<p id="home">.</p>
<main class="container mt-lg-5">
<section
class="row pt-5 mb-5"
style="margin-top: 60px">
<div
class="col-12 col-lg-5 d-flex justify-content-center order-lg-1 align-items-center pb-lg-0 pb-5">
<picture class="d-flex justify-content-center">
<img
alt="picture of myself"
class="hero__image"
src="img/me.png" />
</picture>
</div>
<div
class="col-12 col-lg-7 order-lg-0 d-flex flex-column align-items-lg-start align-items-center mb-5">
<h1 class="hero__headline">
Nice to meet you ! <br />
<br />
I'm <span id="message"></span>
</h1>
<p
class="hero__description mt-5 mb-5"
style="text-align: justify">
I am an undergraduate from the IT Faculty of the University of Moratuwa, and I am
passionate about technology. Welcome to my portfolio website, where I showcase my skills
and projects in these exciting fields. Let's explore the limitless possibilities
together.
</p>
<div class="mb-5">
<button
class="btn btn-primary cv-btn"
style="background-color: rgb(239, 233, 233); border: 1px solid black">
<a
href="https://drive.google.com/file/d/1LxTflEMzpbRSkfO1efKYDfsRac8qdUYW/view?usp=sharing"
target="_blank"
style="color: rgb(19, 19, 20); text-decoration: none"
>View Resume</a
>
</button>
</div>
<!-- <a class="hero__contact underline" href="">Contact me</a>-->
<span class="d-flex gap-3 align-items-center">
<a
class="social-img"
href="https://github.com/thiunuwan"
target="”_blank”">
<img
alt="GitHub"
height="35"
src="img/g4.png"
width="35" />
</a>
<a
class="social-img"
href="https://www.linkedin.com/in/ravindu-thiunuwan-48509324b/"
target="”_blank”"
><img
alt="LinkedIn"
height="38"
src="img/ln.png"
width="38"
/></a>
<a
class="social-img last"
href="https://www.hackerrank.com/thiunuwan?hr_r=1"
target="”_blank”"
><img
alt="hackerrank"
height="38"
src="img/hr-2.png"
width="38"
/></a>
</span>
</div>
</section>
<hr
id="projects"
style="border-color: white; height: 2px; margin-bottom: 100px" />
<section class="container my-5">
<h2
class="projects__headline header-xl mb-4 mt-5"
style="margin-top: 100px">
Projects
</h2>
<!-- <div class="row mb-4">
<div class="col-12 col-lg-6 d-flex flex-column align-items-center">
<picture class="projects__picture">
<source
media="(min-width: 62.5em)"
srcset="assets/images/alocAT.png"
style="width: 907" />
<img
alt="screenshot of website"
class="projects__image"
height="300"
src="assets/images/alocAT.png" />
</picture>
<h3 class="projects__name">Alloc@</h3>
<h3
class="projects__name"
style="text-align: center">
Seat Allocation and Cost Allocation System
</h3>
<p class="projects__tags">
<span>Angular</span>
<span class="ms-5">Springboot</span>
<span class="ms-5">MySQL</span>
</p>
<p class="px-lg-5 px-1 pro-des">
This is a project to develop a web application to allocate meeting rooms and cubicles
in the office premises based on their availability and to generate detailed reports
including the cost for the resource usage for each company of MG group.The overall aim
of this project is to develop a Smart Workspace Management software which creates
smart and premium workspace culture.(Ongoing)
</p>
<div class="projects__links d-flex flex-column align-items-center">
<a
class="underline mt-3"
href="https://github.com/orgs/Team-Majento/repositories"
target="_blank"
><u>View Code</u></a
>
</div>
</div>
<div class="col-12 col-lg-6 d-flex flex-column align-items-center">
<picture class="projects__picture">
<source
media="(min-width: 62.5em)"
srcset="assets/images/wire_citting.png" />
<img
alt="screenshot of design portfolio website"
class="projects__image"
src="assets/images/wire_citting.png" />
</picture>
<h3
class="projects__name"
style="text-align: center">
Automated wire-cutting machine
</h3>
<h3
class="projects__name"
style="text-align: center">
(1st-year hardware project)
</h3>
<p class="projects__tags">
<span> C language</span>
<span class="ms-2">Atmel Studio</span>
<span class="ms-2">Proteus</span>
<span class="ms-2">Atmega32</span>
</p>
<p class="px-lg-5 px-1 pro-des">
This is also a group project to automatically cut the wires and strip wires according
to the user given lengths. We have used Atmega 32 sensor and other sensors as hardware
components. As technologies we used Atmel studio, proteus and blender
</p>
<div class="projects__links d-flex flex-column align-items-center">
<a
class="underline mt-3"
href="https://github.com/hemanthawanniarachchi/Hardware-Project"
target="_blank"
><u>View Code</u></a
>
</div>
</div>
</div> -->
<!-- kk -->
<style>
.row {
display: flex;
flex-wrap: wrap;
}
.projects__card {
border: 1px solid #ddd;
width: 75%;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
flex: 1;
}
.projects__image {
width: 50%;
margin-left: 25%;
height: auto;
border-radius: 5px;
margin-bottom: 10px;
}
.projects__name {
font-size: 18px;
margin-bottom: 5px;
text-align: center;
}
.pro-des {
margin-bottom: 10px;
}
.projects__links {
margin-top: 10px;
}
.projects__tags {
position: absolute;
bottom: 5px;
left: 10px;
}
.underline {
text-decoration: underline;
}
/* Responsive Styles */
@media (max-width: 991px) {
.projects__name {
font-size: 16px;
}
}
@media (max-width: 767px) {
.projects__card {
padding: 10px;
}
.projects__name {
font-size: 14px;
}
.pro-des {
font-size: 12px;
}
}
@media (max-width: 575px) {
.projects__card {
padding: 5px;
}
.projects__name {
font-size: 12px;
}
.pro-des {
font-size: 10px;
}
}
</style>
<div class="row mb-4">
<div class="col-12 col-lg-6 d-flex flex-column align-items-center">
<div class="projects__card">
<h3 class="projects__name">Alloc@</h3>
<h3 class="projects__name">Seat Allocation and Cost Allocation System</h3>
<img alt="screenshot of website" class="projects__image"
src="assets/images/alocAT.png">
<p class="pro-des mb-5">
This is a project to develop a web application to allocate meeting rooms and
cubicles in the office premises based on their availability and to generate detailed
reports including the cost for the resource usage for each company of MG group. The
overall aim of this project is to develop a Smart Workspace Management software
which creates smart and premium workspace culture. (Ongoing)
<br />
<span>
<a
style="display: inline-block; color: azure"
href="https://github.com/Team-Majento?view_as=public"
target="_blank">
<span style="display: inline-block"
><img
alt="GitHub"
height="20"
src="img/g4.png"
width="20"
/></span>
<u>View Code</u>
</a></span
>
</p>
<div class="align-items-center">
<p>
<span>Angular</span>
<span class="ms-2">Springboot</span>
<span class="ms-2">MySQL</span>
</p>
</div>
</div>
</div>
<div class="col-12 col-lg-6 d-flex flex-column align-items-center">
<div class="projects__card">
<h3 class="projects__name">Automated wire-cutting machine</h3>
<h3 class="projects__name">(1st-year hardware project)</h3>
<img
alt="screenshot of design portfolio website"
class="projects__image"
src="assets/images/wire_citting.png" />
<p class="pro-des mb-5">
This is also a group project to automatically cut the wires and strip wires
according to the user given lengths. We have used Atmega 32 sensor and other sensors
as hardware components. As technologies we used Atmel studio, proteus, and blender.
<br />
<span
><a
class="ps-3"
style="display: inline-block; color: azure"
href="https://github.com/hemanthawanniarachchi/Hardware-Project"
target="_blank"
><span style="display: inline-block"
><img
alt="GitHub"
height="20"
src="img/g4.png"
width="20"
/></span>
<u>View Code</u>
</a></span
>
</p>
<div>
<p>
<span>C language</span>
<span class="ms-2">Atmel Studio</span>
<span class="ms-2">Proteus</span>
<span class="ms-2">Atmega32</span>
</p>
</div>
</div>
</div>
<div class="col-12 col-lg-6 d-flex flex-column align-items-center">
<div class="projects__card">
<h3 class="projects__name">Todo APP</h3>
<img
alt="screenshot of design todo website"
class="projects__image"
src="assets/images/todo.png" />
<p class="pro-des mb-5">
A simple ToDo app developed using Angular and Firebase offers an efficient solution for organizing and managing tasks. The app allows users to create, and delete tasks.
<br />
<span
><a
class="ps-3"
style="display: inline-block; color: azure"
href="https://github.com/thiunuwan/todo-app"
target="_blank"
><span style="display: inline-block"
><img
alt="GitHub"
height="20"
src="img/g4.png"
width="20"
/></span>
<u>View Code</u>
</a></span
>
</p>
<div>
<p>
<span>Angular</span>
<span class="ms-2">Firebase</span>
</p>
</div>
</div>
</div>
</div>
<!-- kk -->
</section>
<hr
id="contact"
style="border-color: white; height: 2px" />
<section class="container mt-5">
<h2 class="projects__headline header-xl mb-4">Contact</h2>
<div
class="row justify-content-center"
style="margin-bottom: 5rem">
<button
class="btn btn-primary"
style="
width: 200px;
margin-top: 90px;
background-color: #4ee1a0;
color: black;">
<a
href="mailto:[email protected]"
style="color: black"
>Contact me</a
>
</button>
<center><p class="mt-2">Email : [email protected]</p></center>
</div>
</section>
</main>
<footer id="footer">
<div class="container">
<h3>Ravindu Thiunuwan</h3>
<p>
Let's build something extraordinary together!. Whether you're looking to revamp your
website or start a new project, I'm here to bring your vision to life. Get in touch and
let's create something amazing!
</p>
<div class="social-links">
<a
class="social-img"
href="https://github.com/thiunuwan"
target="”_blank”">
<img
alt="GitHub"
height="35"
src="img/g4.png"
width="35" />
</a>
<a
class="social-img last"
href="https://www.hackerrank.com/thiunuwan?hr_r=1"
target="”_blank”"
><img
alt="hackerrank"
height="38"
src="img/hr-2.png"
width="38"
/></a>
<a
class="social-img"
href="https://www.linkedin.com/in/ravindu-thiunuwan-48509324b/"
target="”_blank”"
><img
alt="LinkedIn"
height="38"
src="img/ln.png"
width="38"
/></a>
</div>
<p>inspired from Frontend Mentor challenge done by coder coder</p>
</div>
</footer>
<!-- End Footer -->
<script src="script.js"></script>
</body>
</html>