-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
121 lines (106 loc) · 6.68 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link type="text/css" rel="stylesheet" href="bootstrap-4.3.1-dist/bootstrap-4.3.1-dist/css/bootstrap.min.css" />
<title>Shawn Pang's Web Portfolio</title>
<link type="text/css" rel="stylesheet" href="styles/styles.css" />
<link href="fontawesome-free-5.8.2-web/fontawesome-free-5.8.2-web/css/all.css" rel="stylesheet">
<script src="jquery/jquery-3.4.1.min.js"></script>
<script src="bootstrap-4.3.1-dist/bootstrap-4.3.1-dist/js/bootstrap.min.js"></script>
<script src="fontawesome-free-5.8.2-web/fontawesome-free-5.8.2-web/js/all.js"></script>
<script src="jquery/portfolio.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#">Portfolio</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home </a>
</li>
<li class="nav-item active">
<a class="nav-link" href="about.html">About <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="skills.html">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="education.html">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="experience.html">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4"><strong>About</strong></h1>
<p class="lead">Let me tell you a bit about myself!</p>
</div>
</div>
<div class="container">
<div class="container border border-dark rounded list-box">
<h1 class="centered"><em>Field of Work</em></h1>
<p class="lead story">I decided to go into the field of computer programming because I felt that it was a
field that had nearly unlimited possibilities and there would always be something to learn. From
software development to artificial intelligence to blockchaining, after stepping into the field I've
learned that there will never be a dull moment with computer programming.
</p>
</div>
<div class="container border border-dark rounded list-box">
<h1 class="centered"><em>Work Ethics</em></h1>
<p class="lead story">I personally believe "You should work hard to take it easy". What I mean by this
is that you should always be thinking of the most effective way to solve a problem, and put in the
effort to make that happen. However, this is much different from simply taking shortcuts or the easy way
out. To do this you will have to understand what is necessary to achieve that action, what will occur
when you take that action, and the results of any action you take. It's making sure that you take the
most effecient actions with the most beneficial results and the least sacrifices. For example, if you
have to make reports every day for your job, you could take the necessary time to work on it every day,
which could be several hours, or you could make a program that can deal with the issue in a couple of
minutes. Making the program might take a couple of weeks depending on your skills, but in exchange for
maybe fourty hours of programming, you could save thousands of hours of report making, which is actually
something I've done before for a job when I had to make reports using Microsoft Excel and created a
macro using Visual Basic to do it for me.</p>
</div>
<div class="container border border-dark rounded list-box">
<h1 class="centered"><em>Beliefs</em></h1>
<p class="lead story">From my perspective, there are two things that make up a person: genes and memories.
When someone is born, their genes act as a sort of skeletal structure for how certain events in their
life will affect their personality. Two people can experience the same events in their lives and be
affected in completely different ways. But before trying to understand someone else, you need to
understand yourself. I try to make sure that I know myself the best, and the experiences that make up
myself, so I can look at other's views objectively and without bias. Since we're all human beings, and
humans have several psychological tendencies that are impossible to ignore, such as the need for other
people, understanding yourself will always make someone better at understanding another person's
perspective.</p>
</div>
<div class="container border border-dark rounded list-box">
<h1 class="centered"><em>Hobbies</em></h1>
<p class="lead story">My two favourite hobbies are playing games and baking desserts. I love nearly every
game, from strategy games to action games, and enjoy play them in my spare time. To me, there is nothing
more satisfying them succeeding in an seemingly-impossible challenge. I also love playing tabletop games
with others, from board games like Monopoly, to role-playing games like Dungeons and Dragons. Games are
meant to be played with other people, after all. Baking is another past time of mine that I enjoy. From
cookies to cakes, I've baked many different desserts over the years, and love making tasty foods that
both look good and taste great.</p>
</div>
</div>
<div class="fillerDiv"></div>
<div class="footer">
</div>
</body>
</html>