-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutme.html
70 lines (67 loc) · 3.98 KB
/
aboutme.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>About Evan</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<link href="bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="bg-primary">
<nav class="navbar navbar-expand-lg bg-primary" data-bs-theme="dark">
<div class="container-fluid">
<ul class="navbar-nav me-auto">
<li class="nav-item"><a href="index.html" class="nav-link" rel="noopener noreferrer" >Home</a></li>
<li class="nav-item"><a href="aboutme.html" class="nav-link active" rel="noopener noreferrer">About Me</a></li>
<!-- <li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li> -->
</ul>
</div>
</nav>
</header>
<div id="progressbar"></div>
<div id="scrollpath"></div>
<section id="banner">
<div class="inner-wrapper">
<h2 class="category"><u>About Me</u></h2>
<div class="content">
<p>I'm Evan. I have been playing video games for as long as I can remember, this led to me spending time pondering about how it would feel to be able to create
such engaging experiences for millions of others to enjoy.
</p>
<p>
My very first step towards into game development started during my first of undergraduate studies where I dabbled into Unity Engine and created an old school
text-based Create Your Own Adventure-esque game on a small story that I wrote before. Ever since then I followed various indie game developers on multiple platforms
to keep up with latest trends in the industry.
</p>
<p>Right before completing my undergraduate degree, I was fortunate enough to secure a job at Brain Station 23 in the Studio 23 team as a trainee gameplay programmer
that kick-started my career and further drived me to pursue this to it's highest ends.
</p>
<p>
My up to date resume is available <a href="files/Md. Nurusshafi Evan - Resume.pdf" target="_blank" class="text-success">here</a>.
</p>
</div>
<h2 class="hobbies"><u>Hobbies</u></h2>
<div class="row">
<div class="column left">
<p>Well, hobbies are a tough one. I pursue almost anything that I find intriguing. Yet, to narrow it down. I play a lot games, both offline and online. Gaming has always been an integral part of my life.</p>
<p>Spending endless hours trying to find soothing yet relatable and meaningful music takes up a huge chunk of my daily time as well as pondering unique gameplay ideas.</p>
</div>
</div>
</div>
</section>
<footer>
<p>Took quite a few cups of coffee and a lot of Googling.</p>
<p><small>Find me on following platforms.</small></p>
<div class="button-wrapper">
<a href="https://www.facebook.com/N0tLucifer/" class="sm-fb" rel="noopener noreferrer" target="_blank"><img src="image/icons/icons8-facebook-64.png" alt="#" class="sm"></a>
<a href="https://github.com/N-Evan" class="sm-github" rel="noopener noreferrer" target="_blank"><img src="image/icons/icons8-github-64.png" alt="#" class="sm"></a>
<a href="https://www.linkedin.com/in/n-evan/" class="sm-github" rel="noopener noreferrer" target="_blank"><img src="image/icons/icons8-linkedin-circled-64.png" alt="#" class="sm"></a>
<a href="https://www.deviantart.com/n0tlucifer" class="sm-deviantart" rel="noopener noreferrer" target="_blank"><img src="image/icons/icons8-deviantart-64.png" alt="#" class="sm"></a>
<a href="mailto:nurusshafievan@gmail.com" class="sm-deviantart" rel="noopener noreferrer"><img src="image/icons/icons8-email-64.png" alt="#" class="sm"></a>
</div>
<script src="script.js"></script>
</footer>
</body>
</html>