-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
176 lines (167 loc) · 6.52 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./assets/images/favicon.ico" type="image/x-icon" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"
></script>
<script src="https://kit.fontawesome.com/566bfff0d6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" />
<title>Zach Gordon</title>
</head>
<body>
<!-- nav -->
<header class="sticky-top">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html"
><img src="./assets/images/favicon.ico" alt="ZG"
/></a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link" href="./index.html">Home</a>
<a class="nav-link active" aria-current="page" href="#">About Me</a>
<a class="nav-link" href="./work.html">My Work</a>
<a class="nav-link" href="./contact.html">Contact Me</a>
<a class="nav-link" href="./store.html">My Store</a>
</div>
</div>
</div>
</nav>
</header>
<div class="container" id="about">
<div class="content">
<h1>About Me</h1>
<p>
I am a junior at Kean University studying <nobr>Computer Science | Cybersecurity.</nobr>
</p>
<p>
In my (very limited) free time, I like to play the drums, watch movies, and spend time
with my bearded dragon Gus, puggle Bailey, and cat Mick.
<nobr>I also have a passion for</nobr>
aviation, as well as live music.
</p>
<h3>Skills</h3>
<div id="skills">
<ul>
<li>Java</li>
<li>Object Oriented Programming</li>
<li>Data Structures</li>
<li>JavaScript / Node.js</li>
<li>HTML5 / CSS3</li>
<li>MongoDB</li>
<li>PostgreSQL</li>
<li>GitHub</li>
</ul>
</div>
<br />
<article id="projects">
<h3 class="header" id="projects-header">My Projects</h3>
<!-- GIFORECAST -->
<section id="projects">
<div class="project-header">
<h2 class="project">Giforecast</h2>
<img class="project-img" src="./assets/images/sunny.png" alt="giforecast" />
</div>
<div class="project-info">
<p>
Giforecast is a web application where users can put in a zip code and it will return
the current forecast (Open Weather API) and a corresponding gif (Giphy API).
</p>
<h3>Technologies I Used</h3>
<p>HTML, CSS, JavaScript, jQuery, AJAX</p>
</div>
</section>
<br />
<hr />
<!-- ZFH -->
<section>
<div class="project-header">
<h2 class="project">Zach's Fish House</h2>
<img
id="zfh-img"
class="project-img"
src="./assets/images/zfh.png"
alt="Zach's Fish House"
/>
</div>
<div class="project-info">
<p>
Zach's Fish House is a full CRUD application adhering to the MVC file structure and
uses all 7 RESTful routes. ZFH allows users to select a fish, see information about,
and "buy" the fish if it is still in stock. This app also uses authorization to
allow users to make an account and log in. Once users are logged in they are able to
"sell" fish and edit or delete the fish that they have listed.
</p>
<h3>Technologies I Used</h3>
<p>Node.js, Express, EJS, CSS, MongoDB, Mongoose, Semantic UI, Bootstrap, bcrypt</p>
</div>
</section>
<br />
<hr />
<!-- RUMBLE -->
<section>
<div class="project-header">
<h2 class="project">RUMBLE</h2>
<img class="project-img" src="./assets/images/rumble.png" alt="RUMBLE" />
</div>
<div class="project-info">
<p>
RUMBLE was a group project where users are shown two babies and they can vote on
whichever they think is cuter. The winner stays on and is matched up against another
baby.
</p>
<h3>Technologies I Used</h3>
<p>React, JSX, CSS, Express, MongoDB, Mongoose, Bootstrap, bcrypt</p>
</div>
</section>
<br />
<hr />
<!-- ICYMI -->
<section>
<div class="project-header">
<h2 class="project">In Case You Missed It</h2>
<img id="icymi-img" class="project-img" src="./assets/images/icymi.png" alt="ICYMI" />
</div>
<div class="project-info">
<p>
In Case You Missed It (ICYMI) is an app that allows you to see setlists from
previous concerts (setlist.fm API). Just pick the artist you like and select one of
their shows.
</p>
<h3>Technologies I Used</h3>
<p>Ruby on Rails, ERB, CSS, PostgreSQL, Bootstrap</p>
</div>
</section>
<br />
<br />
</article>
<footer class="align-items-center py-3 my-4">
<span class="mb-3 mb-md-0">© 2023 Zach Gordon</span>
</footer>
</div>
</div>
</body>
</html>