-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio_2.html
374 lines (320 loc) · 22.6 KB
/
portfolio_2.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;700&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet">
<link rel="icon" href="Pictures/OtherPictures/logoBlack.png" type="image/png">
<link rel="stylesheet" href="CSSComponents/RequiredComponents/footer.css">
<link rel="stylesheet" href="CSSComponents/RequiredComponents/navbar.css">
<link rel="stylesheet" href="CSSComponents/ProjectComponents/portfolio2.css">
<link rel="stylesheet" href="CSSComponents/ExtraComponents/shareModal.css">
<link rel="stylesheet" href="CSSComponents/ExtraComponents/variousAnimations.css">
<link rel="stylesheet" href="CSSComponents/ExtraComponents/growAnimation.css">
<link rel="stylesheet" href="CSSComponents/ExtraComponents/slideInRight.css">
<link rel="stylesheet" href="CSSComponents/ExtraComponents/slideInBottomView.css">
<link rel="stylesheet" href="CSSComponents/ExtraComponents/fadeInView.css">
<!-- <link rel="icon" href="Pictures/logo.png" type="image/x-icon"> -->
<title>Portfolio 2023</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light sticky-top">
<div class="container-fluid">
<!-- logo and name in the top left -->
<a class="navbar-brand" href="index.html?page=index">
<img src="/Pictures/OtherPictures/logoWhite.png" alt="Your Logo" width="64" style="transform:translate(-20%, -5%); color: #343330"
height="48" class="d-inline-block align-top">
<!-- <span style="color:#fff">Max Lichter</span> -->
</a>
<!-- Hamburger button code -->
<button class="navbar-toggler custom-toggler" type="button" data-toggle="collapse"
data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false"
aria-label="Toggle navigation">
<span class="pt-1 pb-2 pr-1 pl-1" style="border: 1px solid white; border-radius: 5px;">
<span class="navbar-toggler-icon"></span></span>
</button>
<!-- Whole top right section of the navbar -->
<div class="collapse navbar-collapse justify-content-end" id="navbarNavAltMarkup"
style="margin-right: -35px">
<div class="navbar-nav">
<!-- "Home" code -->
<a class="nav-item nav-link mr-3" style="color:#fbfbfb;" href="index.html?page=index"
data-page="index">Home </a>
<!-- all of the "Projects" as well as the drop down with it code-->
<div class="nav-item dropdown" style="margin-right:-10px;">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="color:#fbfbfb;">
Projects
</a>
<div class="dropdown-menu dropdown-menu-left-custom"
style="background-color: #343330; border:2px solid #343330;"
aria-labelledby="navbarDropdown">
<a class="dropdown-item text-white fs-15" href="gymthis.html?page=gymthis"
data-page="gymthis">GymThis</a>
<a class="dropdown-item text-white fs-15" href="soccer_robot.html?page=soccer_robot"
data-page="soccer_robot">Soccer Robot</a>
<a class="dropdown-item text-white fs-15" href="portfolio_2.html?page=portfolio_2"
data-page="portfolio_2">Portfolio Website 2023</a>
<a class="dropdown-item text-white fs-15" href="mymuse.html?page=mymuse"
data-page="mymuse">MyMuse</a>
<a class="dropdown-item text-white fs-15" href="additionalprojects.html?page=additionalprojects"
data-page="additionalprojects"> Additional Projects</a>
</div>
</div>
<!-- all of the "Experience" as well as the drop down with it code-->
<div class="nav-item dropdown" style="margin-right:-10px;">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="color:#fbfbfb;">
Experience
</a>
<div class="dropdown-menu dropdown-menu-left-custom"
style="background-color: #343330; border:2px solid #343330;"
aria-labelledby="navbarDropdown">
<a class="dropdown-item text-white fs-15"
href="ayokasystems.html?page=ayokasystems"
data-page="ayokasystems">Ayoka Systems </a>
<a class="dropdown-item text-white fs-15"
href="signet_jewelers_2.html?page=signet_jewelers_2"
data-page="signet_jewelers_2">Signet
Jewelers 2024</a>
<a class="dropdown-item text-white fs-15"
href="southwest_solutions_group.html?page=southwest_solutions_group"
data-page="southwest_solutions_group">Southwest Solutions Group</a>
<a class="dropdown-item text-white fs-15"
href="signet_jewelers_1.html?page=signet_jewelers_1"
data-page="signet_jewelers_1">Signet
Jewelers 2023</a>
<a class="dropdown-item text-white fs-15" href="organizations.html?page=organizations"
data-page="organizations">UT Dallas
Organizations</a>
</div>
</div>
<!-- "Resume" code -->
<a class="nav-item nav-link mr-3" style="color:#fbfbfb;" href="resume.html?page=resume"
data-page="resume">Resume</a>
<!-- "Contact" code -->
<a class="nav-item nav-link mr-3" style="color:#fbfbfb;" href="contact.html?page=contact"
data-page="contact">Contact</a>
</div>
</div>
</div>
</nav>
<div class="container-fluid" style="background-color: #fbfbfb; padding-top: 100px; padding-bottom: 100px;">
<div class="container">
<!-- Top section with the title, description, and date -->
<div class="titleSection">
<h6 class="display-4 text-left font-weight-bold text-sm" style="color:#343330">Portfolio
Website 2023</h6>
<h5 class="underText text-left font-weight-normal mb-4 mt-2" style="color: #343330;">An
enhanced, mobile-responsive, refreshing and refactored upgrade to the original.
<span class="date float-right font-italic" style="color: #9D231B;">Aug. 2023 - Dec. 2023</span>
</h5>
</div>
<!-- the three paragraphs about the portfolio 2024 website -->
<div class="col-md-10 col-12 mx-auto mt-3">
<!-- First paragraph -->
<p class="slide-in-bottom text-left fs-15 pt-4">
I started a quest in the summer of 2022 to use a personal website to highlight my accomplishments
and honors in the workplace. I was itching for a creative outlet in the field of computer science as
school was coming to a close and the possibility of summer employment loomed. <span
class="font-weight-bold font-italic">My first website was
therefore the result of both need and curiosity</span>.
<br>
</p>
<!-- Second paragraph -->
<p class="slide-in-bottom text-left fs-15">
Even though it worked, the first version was a basic showcase for my abilities, constructed using
<span class="font-italic font-underline">HTML, CSS, and JavaScript</span>. It was functional, but it
lacked the elegance and sophistication I was
looking for. Now that some time has passed and my knowledge was grown, I am excited to share the
development of my online
persona. My updated portfolio website is evidence of my capacity to change and improve. Both the
look and feel have changed dramatically with the addition of <span
class="font-weight-bold">Bootstrap
CSS</span> and careful attention to
mobile responsiveness.
<br>
</p>
<!-- Third paragraph -->
<p class="slide-in-bottom text-left fs-15">
The days of limited interaction and unchanging layouts are long gone. With its elegant layout and
simple navigation, the new website radiates sophistication. Every element, from dynamic content to
smooth transitions, has been carefully designed to improve the user experience. The website smoothly
adjusts to various screen sizes when viewed on a desktop computer or a smartphone, guaranteeing
accessibility without sacrificing usability. This version is a big step forward for me as a web
developer, with a <span class="font-weight-bold">more feature-rich feature set and a more polished
look</span>. I'm eager to see where
this digital voyage takes me as I iterate and improve further. Below, is a link to the websites
GitHub repository.
</p>
<!-- Portfolio Website 2023 GitHub button -->
<div class="text-left slide-in-right mt-4 mb-4">
<a href="https://github.com/iammaxlichter/Portfolio-Website-2023" target="_blank">
<button class="btn btn-md custom-button custom-border-radius">GitHub</button>
</a>
</div>
</div>
<div class="row">
<!-- This is where the enlarged image and corresponding caption will be -->
<div class="col-md-6 col-12 pr-lg-5 mt-5">
<img id="enlargedImg" class="growOnHover" src="">
<p id="caption"></p>
</div>
<div class="col-md-6 col-12 pl-lg-5">
<p class="fade-in-view text-center fs-20">Click the images to learn more.</p>
<div class="row">
<!-- First column of pictures -->
<div class="col-sm-4 col-4 pt-0 pb-1 pr-1 pl-1">
<img src=".\Pictures\ProjectsPictures\portfolio2_1.png"
class="img-fluid img growOnHover fade-in-view mb-2" onclick="enlargeImage(this);"
alt="Portfolio Website 2023 page"
data-caption="Home page of the website complete with some fun animation and a brief introduction on who I am.">
<img src=".\Pictures\ProjectsPictures\portfolio2_2.png"
class="img-fluid img growOnHover fade-in-view mb-2" onclick="enlargeImage(this);"
alt="Connect page"
data-caption="Connect with me page is a page where you can learn more about me and send me a message!">
<img src=".\Pictures\ProjectsPictures\portfolio2_3.png"
class="img-fluid img growOnHover fade-in-view mb-2" onclick="enlargeImage(this);"
alt="Resume page"
data-caption="The resume page, where you can look at my resume or download it as a PDF.">
<img src=".\Pictures\ProjectsPictures\portfolio2_4.png"
class="img-fluid img growOnHover fade-in-view mb-2" alt="" onclick="enlargeImage(this);"
alt="GymThis page"
data-caption="GymThis is an application for all gym goers that is currently a work in progress.">
<img src=".\Pictures\ProjectsPictures\portfolio2_5.png"
class="img-fluid img growOnHover fade-in-view mb-2" alt="" onclick="enlargeImage(this);"
alt="Soccer Robot page"
data-caption="The soccer robot project involves two robots playing soccer, controlled by real people in real-time. This project is part of UT Dallas' EPICS program.">
</div>
<!-- Second column of pictures -->
<div class="col-sm-4 col-4 pt-0 pb-1 pr-1 pl-1">
<img src=".\Pictures\ProjectsPictures\portfolio2_6.png"
class="img-fluid img growOnHover fade-in-view mb-2" style="animation-delay:.2s"
alt="Ally's Photography page" onclick="enlargeImage(this);"
data-caption="Ally's Photography is a website I built for my friend to let he showcase her amazing photos.">
<img src=".\Pictures\ProjectsPictures\portfolio2_7.png"
class="img-fluid img growOnHover fade-in-view mb-2" style="animation-delay:.2s"
alt="Portfolio Website 2023 Page" onclick="enlargeImage(this);"
data-caption="This picture is the project page for THIS website. A beautiful redesign of the predecessor.">
<img src=".\Pictures\ProjectsPictures\portfolio2_8.png"
class="img-fluid img growOnHover fade-in-view mb-2" style="animation-delay:.2s"
alt="MyMuse page" onclick="enlargeImage(this);"
data-caption="MyMuse is a mobile application that let's you share music with your friends at any given point in the day!">
<img src=".\Pictures\ProjectsPictures\portfolio2_9.png"
class="img-fluid img growOnHover fade-in-view mb-2" style="animation-delay:.2s"
alt="Apollo Page" onclick="enlargeImage(this);"
data-caption="Apollo is a real-time finance stock market tracking website to help you invest according to the stock market trends.">
<img src=".\Pictures\ProjectsPictures\portfolio2_10.png"
class="img-fluid img growOnHover fade-in-view mb-2" style="animation-delay:.2s"
alt="Portfolio Website 2022 page" onclick="enlargeImage(this);"
data-caption="The first iteration of my portfolio website. Not very pretty, but definitely set my foot in the door for my love for web development!">
</div>
<!-- Third column of pictures -->
<div class="col-sm-4 col-4 pt-0 pb-1 pr-1 pl-1">
<img src=".\Pictures\ProjectsPictures\portfolio2_11.png"
class="img-fluid img growOnHover fade-in-view mb-2" style="animation-delay:.4s"
alt="Signet 2024 Page" onclick="enlargeImage(this);"
data-caption="My upcoming summer 2024 internship as a software development intern at Signet Jewelers in Dallas, TX.">
<img src=".\Pictures\ProjectsPictures\portfolio2_12.png"
class="img-fluid img growOnHover fade-in-view mb-2" style="animation-delay:.4s"
alt="SSG page" onclick="enlargeImage(this);"
data-caption="My previous summer 2023 internship as a software development intern at Southwest Solutions Group in Dallas, TX.">
<img src=".\Pictures\ProjectsPictures\portfolio2_13.png"
class="img-fluid img growOnHover fade-in-view mb-2" style="animation-delay:.4s"
alt="Signet 2023 Page" onclick="enlargeImage(this);"
data-caption="My previous summer 2023 internship as a quality engineering intern at Signet Jewelers in Dallas, TX.">
<img src=".\Pictures\ProjectsPictures\portfolio2_14.png"
class="img-fluid img growOnHover fade-in-view mb-2" style="animation-delay:.4s"
alt="Organizations page" onclick="enlargeImage(this);"
data-caption="The organizations page is a page dedicated to the most significant organizations I have been a part of in my time at UT Dallas.">
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="footerCurrent text-black text-center">
<!-- Top row, social icons -->
<div class="social-icons">
<a href="https://github.com/iammaxlichter" target="_blank" class="social-icon"><i
class="fs-16 fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/iammaxlichter/" target="_blank" class="=social-icon"><i
class="fs-16 fab fa-linkedin"></i></a>
<a href="mailto:[email protected]" class="=social-icon"><i class="fs-16 fas fa-envelope"></i></a>
<a href="#" onclick="openShareModal(event)" class="=social-icon"><i class="fs-16 fas fa-share-alt"></i></a>
</div>
<!-- Second row, my name -->
<div class="name fs-15" style="color: #fbfbfb;">
Max Lichter
</div>
<!-- Third row, copyright -->
<div class="copyright mt-3 fs-12" style="color: #fbfbfb;">
© 2024 Max Lichter. All rights reserved.
</div>
<!-- Backdrop for modal -->
<div id="modalBackdrop" class="modal-backdrop"></div>
<div id="shareModal" class="modal">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header text-center justify-content-center" style="border-bottom: none;">
<h4 class="modal-title font-weight-bold fs-15" style="color:white;">Share</h4>
</div>
<div class="sharethis-inline-share-buttons"></div>
<!-- Modal Body -->
<div class="modal-body text-center">
<div class="input-group">
<!-- text in the center to the left of the copy button -->
<input id="shareLink" type="text" class="form-control bg-light"
value="https://iammaxlichter.github.io" readonly>
<!-- Copy button -->
<div class="input-group-append">
<button id="copyButton" class="copyButton btn btn-outline-secondary"
onclick="copyUrlToClipboard()" type="button">
<i class="far fa-copy"></i>
</button>
</div>
</div>
<!-- Success message for copying to clipboard-->
<div id="copySuccessMessage" class="mt-2 fs-15" style="display: none; color: #fbfbfb;">
Successfully copied to clipboard!
</div>
</div>
<!-- All the share icons-->
<div class="row mt-1 justify-content-center share-icons">
<div class="text-center">
<a href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fiammaxlichter.github.io"
target="_blank" class="btn btn-outline-secondary" style="border:1px solid #fbfbfb"><i
class="fab fa-linkedin"></i></a>
</div>
<div class="text-center">
<a href="mailto:?subject=Check%20out%20this%20website&body=Here's%20a%20link%20to%20a%20website%20I%20thought%20you%20might%20like:%20https%3A%2F%2Fiammaxlichter.github.io"
class="btn btn-outline-secondary" style="border:1px solid #fbfbfb"><i
class="fas fa-envelope"></i></a>
</div>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="JSComponents/enlargingImage.js"></script>
<script src="JSComponents/navbar.js"></script>
<script src="JSComponents/footer.js"></script>
<script src="JSComponents/slideInLeftView.js"></script>
<script src="JSComponents/slideInRightView.js"></script>
<script src="JSComponents/slideInBottomView.js"></script>
<script src="JSComponents/fadeInView.js"></script>
</body>
</html>