-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
37 lines (37 loc) · 1.93 KB
/
about.html
File metadata and controls
37 lines (37 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<title>About Pshivvy</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/about.css">
<script src="js/all.js"></script>
<link rel='shortcut icon' type="image/x-icon" href='favicon.ico?' >
</head>
<body>
<div class="nav-wrapper">
<div class="nav-bar-ico">
<div>
<a href="https://github.com/pshivvy" target="_blank"><img id="github" src="images/githubicon.png" onmouseover="gitOver()" onmouseout="gitOut()"/></a>
</div>
</div>
<div class="nav" >
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="active" href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</div>
</div>
<div class="aboutsec">
<h2>About me</h2>
<p id="undertext" style="margin: -25px 0 0 0; padding: 0;">these are just some basic things about me</p>
<p>- I was born and raised in India, move to the U.S. around 2013, have been here ever since</p>
<p>- Started "programming"(basic html and css) when I was 11/12 and then things came to a halt
until freshman year of high school when a friend of mine introduced me to actual programming.</p>
<p>- Since then, I have been trying to get better and better at it by making games in Unity3D, making mini projects in Racket, Python, etc.</p>
<p id="sidenote">* I will post my projects and assignment work I do onto <a href="https://github.com/pshivvy" target="_blank">my Github</a>, whenever possible. 😊</p>
</div>
</body>
</html>