-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
448 lines (448 loc) · 17.9 KB
/
Copy pathindex.html
File metadata and controls
448 lines (448 loc) · 17.9 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
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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ryan Malone</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header id="main-header">
<h1>CSCE 242: Client Server Computing</h1>
<h2>Ryan Malone</h2>
<nav id="main-nav">
<div id="hamburger">
<div></div>
<div></div>
<div></div>
</div>
<ul id="nav-items" class="flex-container hide">
<li id="assignments-tab" class="bottom-border">Assignments</li>
<li id="project-tab">Project</li>
</ul>
</nav>
</header>
<main id="main-content">
<div id="assignment-section">
<h2 id="assignment-label">Assignments:</h2>
<div id="Assignments" class="flex-container">
<section class="column">
<header>
<a href="assignments/assignment1/index.html"
><h3>Assignment 1 - Basic HTML</h3></a
>
</header>
<a href="assignments/assignment1/index.html"
><img src="images/assignment1.png" alt="Picture of Assignment 1"
/></a>
<p>
This assignment consisted of us configuring our website to show
the name of the class, our names, a class description, and a list
of our assignments.
</p>
</section>
<section class="column">
<header>
<a href="assignments/assignment2/index.html"
><h3>Assignment 2 - Basic CSS</h3></a
>
</header>
<a href="assignments/assignment2/index.html"
><img src="images/assignment2.png" alt="Picture of Assignment 2"
/></a>
<p>
In this assignment, we begin to style our main page and the
assignment 2 page using CSS. We modified colors, fonts,
background, etc. using CSS.
</p>
</section>
<section class="column">
<header>
<a href="assignments/assignment3/index.html"
><h3>Assignment 3 - Page Layout</h3></a
>
</header>
<a href="assignments/assignment3/index.html"
><img src="images/assignment3.png" alt="Picture of Assignment 3"
/></a>
<p>
In this assignment we began to explore how CSS can be used to
change the layout of the page. We also explored Flex Boxes.
</p>
</section>
<section class="column">
<header>
<a href="assignments/assignment5/index.html"
><h3>Assignment 5 - Recreate CSS Page</h3></a
>
</header>
<a href="assignments/assignment5/index.html"
><img src="images/assignment5.png" alt="Picture of Assignment 5"
/></a>
<p>
This assignment required us to recreate a webpage that was given
to us. We had to try and match the same styling elements from the
original page.
</p>
</section>
<section class="column">
<header>
<a href="assignments/assignment6/index.html"
><h3>
Assignment 6 - JavaScript, Buttons, Functions, and more.
</h3></a
>
</header>
<a href="assignments/assignment6/index.html"
><img src="images/assignment6.png" alt="Picture of Assignment 6"
/></a>
<p>
This assignment required us to begin implementing buttons and
functions using javascript, css, and html.
</p>
</section>
<section class="column">
<header>
<a href="assignments/assignment7/index.html"
><h3>Assignment 7 - Conditionals</h3></a
>
</header>
<a href="assignments/assignment7/index.html"
><img src="images/assignment7.png" alt="Picture of Assignment 7"
/></a>
<p>
This assignment consisted of creating 2 pages using one index.html
file. The page contained two exercises (an age comparison tool and
a donation goal chart). We then used javascript to make the 2
exercises work and to show only one exercise at a time.
</p>
</section>
<section class="column">
<header>
<a href="assignments/assignment8/index.html"
><h3>Assignment 8 - Loops</h3></a
>
</header>
<a href="assignments/assignment8/index.html"
><img src="images/assignment8.png" alt="Picture of Assignment 8"
/></a>
<p>
This assignment involved making a picture of a man walking/running
switch back and fourth while moving across it's div box. It also
made a fundraising thermometer graphic fill based on user input.
Intervals in JS were used to make both these functionalities work.
</p>
</section>
<section class="column">
<header>
<a href="assignments/assignment9/index.html"
><h3>Assignment 9 - Arrays</h3></a
>
</header>
<a href="assignments/assignment9/index.html"
><img src="images/assignment9.png" alt="Picture of Assignment 9"
/></a>
<p>
In this assignment, we were tasked with building a site with two
activities, both of which utilized arrays. The first activity
changes quotes every 2 seconds from an array of quotes, and the
second activity draws a rainbow row-by-row (every second) and
places a pot-of-gold at the end of it.
</p>
</section>
<section class="column">
<header>
<a href="assignments/assignment10/index.html"
><h3>Assignment 10 - Classes</h3></a
>
</header>
<a href="assignments/assignment10/index.html"
><img
src="images/assignment10.png"
alt="Picture of Assignment 10"
/></a>
<p>
In this assignment, we were tasked with building a website that
would display toys. The toy objects must be created and displayed
using javascript only. As you navigate the website, if you hover
over a toy, its information will be displayed.
</p>
</section>
<section class="column">
<header>
<a href="assignments/assignment11/index.html"
><h3>Assignment 11 - Parsing JSON</h3></a
>
</header>
<a href="assignments/assignment11/index.html"
><img
src="images/assignment11.png"
alt="Picture of Assignment 11"
/></a>
<p>
In this assignment, we were tasked with creating a website that
would get its information by parsing through a JSON file. The
information on this site was a list of movies with different bits
of information about them and it was all gathered from a JSON
file.
</p>
</section>
<section class="column node">
<header>
<a href="https://hello-world-n9lm.onrender.com/"
><h3>Assignment 12 - Server Side Hello World</h3></a
>
</header>
<a href="https://hello-world-n9lm.onrender.com/"
><img
src="images/assignment12.png"
alt="Picture of Assignment 12"
/></a>
<p>
This assignment tasked us with creating a hello-world website
using Node.js. We created a javascript file, pushed it to github,
and hosted it on render.
</p>
<a href="https://github.com/RyanMalonee/node-helloworld"
>Code Repo</a
>
<a href="https://hello-world-n9lm.onrender.com/">Live Demo</a>
</section>
<section class="column node">
<header>
<a href="https://reading-server-side-json.onrender.com/"
><h3>Assignment 13 - Reading Server Side JSON</h3></a
>
</header>
<a href="https://reading-server-side-json.onrender.com/"
><img
src="images/assignment13.png"
alt="Picture of Assignment 13"
/></a>
<p>
This assignment tasked us with creating a website using Node.js
and express. We created a javascript file to handle the server
side JSON files, a client side javascript file to handle the
displaying of the JSON information, and html/css files to display
information to the user.
</p>
<a href="https://github.com/RyanMalonee/reading-server-side-json"
>Code Repo</a
>
<a href="https://reading-server-side-json.onrender.com/"
>Live Demo</a
>
</section>
<section class="column node">
<header>
<a href="https://server-get-and-post-s57j.onrender.com/"
><h3>Assignment 14 - Server Get and Post</h3></a
>
</header>
<a href="https://server-get-and-post-s57j.onrender.com/"
><img
src="images/assignment14.png"
alt="Picture of Assignment 14"
/></a>
<p>
In this assignment, we set up server side and client side code to
display information to the user. The topic I chose was on cities
around the world and the site includes a form that will accept the
information needed to add a new city. The information provided in
the form is validated and added to the list of cities to be
displayed on the website.
</p>
<a href="https://github.com/RyanMalonee/server-get-and-post"
>Code Repo</a
>
<a href="https://server-get-and-post-s57j.onrender.com/"
>Live Demo</a
>
</section>
<section class="column node">
<header>
<a href="https://server-edit-and-delete.onrender.com/"
><h3>Assignment 16 - Server Edit and Delete</h3></a
>
</header>
<a href="https://server-edit-and-delete.onrender.com/"
><img
src="images/assignment16.png"
alt="Picture of Assignment 16"
/></a>
<p>
In this assignment, we took the website that we used in assignment
14 and added edit and delete functionality to it so that people
could change city's information or delete a city whenever they see
fit.
</p>
<a href="https://github.com/RyanMalonee/Server-Edit-And-Delete"
>Code Repo</a
>
<a href="https://server-edit-and-delete.onrender.com/">Live Demo</a>
</section>
<section class="column node">
<header>
<a href="https://server-crud-mongodb.onrender.com"
><h3>Assignment 17 - Server CRUD With MongoDB</h3></a
>
</header>
<a href="https://server-crud-mongodb.onrender.com"
><img
src="images/assignment17.png"
alt="Picture of Assignment 17"
/></a>
<p>
In this assignment, we took the website that we used in assignment
16 and changed the server code to work with a MongoDB database.
This allows our data to stay constant. In addition. I added the
ability to upload and store pictures.
</p>
<a href="https://github.com/RyanMalonee/Server-CRUD-MongoDB"
>Code Repo</a
>
<a href="https://server-crud-mongodb.onrender.com">Live Demo</a>
</section>
</div>
</div>
<div id="project-section" class="hide-section">
<h2 id="assignment-label">Project:</h2>
<div id="projects" class="flex-container">
<section class="column">
<header>
<a href="project/Topic Selection - Ryan Malone.pdf"
><h3>Topic Selection</h3></a
>
</header>
<a href="project/Topic Selection - Ryan Malone.pdf"
><img
src="images/topic-selection.png"
alt="Picture of Topic Selection Document"
/></a>
<p>
This is the description of what my project topic is about, how my
website will be laid out, and what data I will store on the
website.
</p>
</section>
<section class="column">
<header>
<a href="project/wireframe/index.html"><h3>Wireframe</h3></a>
</header>
<a href="project/wireframe/index.html"
><img
src="images/wireframe.png"
alt="Picture of wireframe of project website"
/></a>
<p>
In this assignment I created a wireframe of what my project
website should look like. This includes the different pages,
elements on the pages, and what each page/element should link to.
</p>
</section>
<section class="column">
<header>
<a href="project/part1/index.html"
><h3>Project Website - Part 1</h3></a
>
</header>
<a href="project/part1/index.html"
><img
src="images/project-site.png"
alt="Picture of project website mockup"
/></a>
<p>
This assignment involved the creation of the project website using
the wireframe. This was a mockup of the site with placeholder
images. There was a large focus on format and less of a focus on
color/decoration.
</p>
</section>
<section class="column">
<header>
<a href="project/part2/index.html"
><h3>Project Website - Part 2</h3></a
>
</header>
<a href="project/part2/index.html"
><img
src="images/project-part2.png"
alt="Picture of project website with pictures and color"
/></a>
<p>
This assignment tasked us with developing our website further by
replacing all placeholder images with actual images and adding
color to the site. We were also instructed to ensure that all of
our flexing properties were working correctly.
</p>
</section>
<section class="column">
<header>
<a href="project/part4/index.html"
><h3>Project Website - Part 4</h3></a
>
</header>
<a href="project/part4/index.html">
<img
src="images/project-part4.png"
alt="Picture of project website"
/>
</a>
<p>
This assignment tasked us with developing our website further by
adding form validation to the form that was already present on the
site, creating a working 'contact me' form that sends emails to my
email, and adding an iframe to the site (my iframes can be found
in the activities and attractions box when you click on a
section).
</p>
</section>
<section class="column">
<header>
<a href="project/part5/index.html"
><h3>Project Website - Part 5</h3></a
>
</header>
<a href="project/part5/index.html">
<img
src="images/project-part5.png"
alt="Picture of project website"
/>
</a>
<p>
In this assignment, we were tasked with further developing our
website so that the information about the activities and
attractions in Delaware were gathered entirely from a JSON file.
This allowed the form to submit new activities and attractions to
the website to operate successfully.
</p>
</section>
<section class="column node">
<header>
<a href="https://dela-where.onrender.com"
><h3>Project Website - Final</h3></a
>
</header>
<a href="https://dela-where.onrender.com"
><img
src="images/project-part5.png"
alt="Picture of Project main page"
/></a>
<p>
This final iteration of our project connected out activities and
attractions to a MongoDB database. In addition, the form to add
new activities and attractions has been configured to function
properly. This allows consistent data to be stored, altered, and
deleted easily.
</p>
<a
href="https://github.com/RyanMalonee/RyanMalonee.github.io/tree/main/project/final"
>Code Repo</a
>
<a href="https://dela-where.onrender.com">Live Demo</a>
</section>
</div>
</div>
</main>
<footer id="main-footer"></footer>
<script src="script.js"></script>
</body>
</html>