-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-projects.html
419 lines (410 loc) · 15.5 KB
/
my-projects.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
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
<!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" />
<meta
name="description"
content="Gabriella Corales is a Front-End Developer, based in the U.S. View her latest coding projects here including a Weather app built using HTML, CSS, JavaScript, and an API. Contact her today with your website and development needs."
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<script
src="https://kit.fontawesome.com/8dacd31b6d.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/styles/portfolio.css" />
<title>Projects | Gabriella Corales, Front-End Developer</title>
</head>
<body>
<div class="container-fluid bg-light">
<nav class="d-flex justify-content-between">
<div>
<a href="/" title="Home | Gabriella Corales, Front-End Developer"
><img
src="/images/coder-emoji.png"
alt="female coder emoji"
/>EllaCodes</a
>
</div>
<ul>
<li>
<a href="/" title="Home | Gabriella Corales, Front-End Developer"
>Home</a
>
</li>
<li>
<a href="/about.html" title="About | Gabriella Corales">About</a>
</li>
<li>
<a
href="/my-projects.html"
class="active"
title="Projects | Gabriella Corales"
>Work</a
>
</li>
<li>
<a href="/contact.html" title="Contact | Gabriella Corales"
>Contact</a
>
</li>
</ul>
</nav>
</div>
<div class="container content">
<h1>Take a look at the projects I've been working on!</h1>
<div class="row">
<div class="col-md-6 mt-5">
<div
id="carouselExampleIndicators"
class="carousel slide"
data-bs-ride="true"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="3"
aria-label="Slide 4"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="4"
aria-label="Slide 5"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="5"
aria-label="Slide 6"
></button>
</div>
<div class="carousel-inner p-2 shadow rounded">
<div class="carousel-item active" data-bs-interval="10000">
<img
src="/images/weather-app.png"
class="d-block w-100 h-100"
alt="sunny background preview"
/>
</div>
<div class="carousel-item data" data-bs-interval="2000">
<img
src="/images/snowy-weather-preview.PNG"
class="d-block w-100 h-100"
alt="snowy weather preview"
/>
</div>
<div class="carousel-item" data-bs-interval="2000">
<img
src="/images/foggy-weather-preview.PNG"
class="d-block w-100 h-100"
alt="foggy weather preview"
/>
</div>
<div class="carousel-item" data-bs-interval="2000">
<img
src="/images/cloudy-weather-preview.PNG"
class="d-block w-100 h-100"
alt="cloudy background preview"
/>
</div>
<div class="carousel-item" data-bs-interval="2000">
<img
src="/images/rainy-weather-preview.PNG"
class="d-block w-100 h-100"
alt="rainy weather preview"
/>
</div>
<div class="carousel-item" data-bs-interval="2000">
<img
src="/images/clear-night-preview.PNG"
class="d-block w-100 h-100"
alt="clear night preview"
/>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<h3 class="text-center mt-4">
<a
href="https://ellasreactweatherapp.netlify.app/"
target="_blank"
class="text-decoration-none text-dark"
title="Weather App | Developed by: Gabriella Corales"
>React Weather App</a
>
</h3>
<p class="text-center text-muted">
Rebuilt with React, HTML, and CSS. A responsive, weather app that
displays global weather data for over 200,000 cities around the
world. Features current weather data, a 7-day forecast, hourly
forecast (up to 4 hours), temperatures in Celsius and Fahrenheit,
and 6 different backgrounds and color palettes that change based on
the weather: sunny, cloudy, rainy, foggy, snowing, etc. Inspired by
the iPhone Weather widget. Utilized API Integration, the Axios
library, and Bootstrap.
<br />
<a
href="https://ellasweatherapp.netlify.app/"
target="_blank"
class="text-decoration-none text-center"
title="Weather App | Developed by: Gabriella Corales"
>*Original Weather App</a
>
built with vanilla JavaScript, HTML, and CSS. Original project also
features a current location button using native browser Geolocation
API.
</p>
</div>
<div class="col-md-6 mt-5">
<img
src="/images/minimalist-weather-app.png"
alt="Minimalist Design Weather App"
class="img-fluid rounded p-2 shadow"
/>
<h3 class="text-center mt-4">
<a
href="https://gcweatherapp.netlify.app/"
target="_blank"
class="text-decoration-none text-dark"
title="Minimalist Designed Weather App | Developed by: Gabriella Corales"
>Minimalist Designed Weather App</a
>
</h3>
<p class="text-center text-muted">
For those looking for a more sleek and simplified look, this project
features a minimalist design. Built with HTML, CSS, and JavaScript.
Uses Geolocation and Weather APIs. Includes current temperature and
a background that changes based on the weather. (Note: I can build
more than weather apps but chose to build this project for
additional practice and to showcase a different design.)
</p>
</div>
<div class="col-md mt-5">
<img
src="/images/student-friendly-dictionary-preview.jpg"
alt="dictionary app preview"
class="img-fluid rounded p-2 shadow"
/>
<h3 class="text-center mt-4">
<a
href="https://ellasdictionaryapp.netlify.app/"
target="_blank"
class="text-decoration-none text-dark"
title="Dictionary App | Coming Soon by: Gabriella Corales"
>Student-Friendly Dictionary App</a
>
</h3>
<p class="text-center text-muted">
Built with React, HTML, and CSS. A functional, student-friendly
dictionary app with access to more than 150,000 words, developed
with secondary students, developing readers, and English Language
Learners in mind. Features student-friendly definitions for over
150,000 words including 2 or more synonyms, 2 or more antonyms,
supporting images to support student understanding, example
sentences with the word used in context, Spanish translation for
English Language Learners, and an audio pronunciation (forthcoming).
Integrates 3 different APIs including the Merriam Webster
Intermediate Dictionary API for Grades 6-8 to render definitions
that are accessible and understandable for secondary students.
</p>
</div>
<div class="col-md-6 mt-5">
<img
src="/images/clean-water.PNG"
alt="access to clean water project"
class="img-fluid rounded p-2 shadow"
/>
<h3 class="text-center mt-4">
<a
href="https://www.shecodes.io/workshops/shecodes-basics-539307aa-4be7-41c9-bf04-1d95c73adfea/projects/847595"
target="_blank"
class="text-decoration-none text-dark"
title="Access to Clean Water Project | Coded with Passion by: Gabriella Corales"
>Access to Clean Water Project</a
>
</h3>
<p class="text-center text-muted">
Built with passion, just 3 weeks after learning how to code. This
was my first coding project, built with HTML and CSS, included here
to show you where my coding skills started.
</p>
</div>
<div class="col-md-6 mt-5">
<img
src="/images/portfolio.PNG"
alt="Portfolio preview"
class="img-fluid rounded p-2 shadow"
/>
<h3 class="text-center mt-4">
<a
href="https://ellacodes.netlify.app/"
target="_blank"
class="text-decoration-none text-dark"
title="Portfolio | Developed by: Gabriella Corales"
>Responsive Portfolio</a
>
</h3>
<p class="text-center text-muted">
Built with HTML, CSS, and Bootstrap. This website can be viewed on
any device, including mobile phones.
</p>
</div>
<div class="col-md-6 mt-5">
<div
id="carouselExampleInterval"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-inner p-2 shadow rounded">
<div class="carousel-item active" data-bs-interval="10000">
<img
src="/images/iphone-weather-app-4.PNG"
class="d-block w-100"
alt="Iphone weather app preview"
/>
</div>
<div class="carousel-item" data-bs-interval="2000">
<img
src="/images/iphone-weather-app-3.PNG"
class="d-block w-100"
alt="Iphone weather app preview"
/>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleInterval"
data-bs-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleInterval"
data-bs-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<h3 class="text-center mt-4">
<a
href="#"
class="text-decoration-none text-dark"
title="iPhone-Inspired Weather App | Developed by: Gabriella Corales"
>iPhone-Inspired Weather App</a
>
</h3>
<p class="text-center text-muted">
Designed to showcase my ability to replicate a design in a "pixel
perfect" way. This app design was modelled after the iPhone Weather
App (background excluded). Built with HTML, CSS, JavaScript, and a
Weather API. Features an hourly forecast.
</p>
</div>
</div>
</div>
<div class="container">
<footer>
<div
class="contact-box d-flex justify-content-between d-none d-md-flex"
>
<div>
<h4>Work Inquiry</h4>
<p class="mt-3 text-muted">Let's work together</p>
</div>
<div class="mt-3">
<a href="/contact.html" class="btn btn-hero">Contact Me</a>
</div>
</div>
<div class="social-media-icons mt-3">
<a href="mailto:[email protected]">[email protected]</a>
<br />
<br />
<a href="https://github.com/EllaCodes4" target="_blank"
><i class="fa-brands fa-github"></i
></a>
<a href="https://twitter.com/EllaCodes" target="_blank"
><i class="fa-brands fa-twitter"></i
></a>
<a
href="https://www.linkedin.com/in/gabriella-corales"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
</div>
</footer>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"
></script>
</body>
</html>