-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfitme.html
More file actions
129 lines (121 loc) · 4.29 KB
/
fitme.html
File metadata and controls
129 lines (121 loc) · 4.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<title>Jason Nguyen</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Custom fonts for this template -->
<link
href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i"
rel="stylesheet"
/>
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" />
<!-- Custom styles for this template -->
<link href="css/resume.min.css" rel="stylesheet" />
</head>
<body id="page-top">
<nav
class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top"
id="sideNav"
>
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Jason Nguyen</span>
<span class="d-none d-lg-block">
<img
class="img-fluid img-profile rounded-circle mx-auto mb-2"
src="img/profile.jpg"
alt=""
/>
</span>
</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">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="./index.html">Projects</a>
</li>
</ul>
</div>
</nav>
</body>
<div class="container-fluid p-0">
<section
class="resume-section p-3 p-lg-5 d-flex align-items-center"
id="education"
>
<div class="w-100">
<h2 class="mb-5">FitMe</h2>
<div
class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5"
>
<div class="resume-content">
<h3 class="mb-0">Summary</h3>
<div>
I developed a full-stack fitness web application that allows users
to track and progress unique workouts. As this was the largest
project I've worked on, I created a SRS to identify project goals
which included features, requirements and as well as tools and
languages I needed to learn. This project took me a month to learn
the tools needed and implement the functional requirements.
<br />
<br />
Tools used: JS ES6, React.js, Node.js/Express.js, MongoDB
</div>
<br />
<br />
<h3 class="mb-0">An Introduction</h3>
<div>
I love weight lifting. Since my sophmore year of Highschool, I've
consistenly made strides towards my lifting goals. To help get
there, myself and gym regulars use the help of a notebook or
note's app to track excerise weight progression. The reason for
this is that calculated, consistent increase in weight is a key to
reaching goals faster. But I'm lazy. I forget which exercises I
did or of how much weight I should be lifting tonight because it's
all in my head! This hinders my progress because I will miss days
where I should have increased my weight. This is a major roadblock
to success I've found when lifting on my own workout plan.
</div>
<br />
<br />
<h3 class="mb-0">Login and Registration</h3>
<img
src="./img/login.png"
class="img-fluid"
alt="Responsive image"
/>
<br />
<br />
<img
src="./img/signup.png"
class="img-fluid"
alt="Responsive image"
/>
<br />
</div>
</div>
</div>
</section>
</div>
</html>