-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
593 lines (558 loc) · 21.1 KB
/
index.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
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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
<!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" />
<script src="https://cdn.lordicon.com/ritcuqlt.js"></script>
<title>Portfolio Page</title>
<link rel="shortcut icon" href="imgs/user.avif" type="image/x-icon" />
<link rel="stylesheet" href="css/index.css" />
<script
src="https://kit.fontawesome.com/6caec21773.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Nav bar -->
<header>
<!-- Logo Div -->
<div>
<a id="link-logo" href="index.html"
><img id="logo" src="imgs/olympic-games.png" alt="logo" /><span
>Andres Contreras</span
></a
>
</div>
<!-- Links Bar -->
<nav id="nav-head">
<ul>
<li>
<a class="nav-link active" href="#first-container"
><i class="fa-solid fa-fingerprint"></i> About me</a
>
</li>
<li>
<a class="nav-link" href="#skills"
><i class="fa-solid fa-circle-nodes"></i> Skills</a
>
</li>
<li id="certification">
<a class="nav-link" href="#certificates"
><i class="fa-solid fa-award"></i> Certificates</a
>
</li>
<li>
<a class="nav-link" href="#projects"
><i class="fa-solid fa-screwdriver-wrench"></i> Projects</a
>
</li>
<li>
<a class="nav-link" href="#contact-me"
><i class="fa-solid fa-phone"></i> Contact</a
>
</li>
<li>
<!-- Download CV Button -->
<button class="classic-btn">
<a
href="https://drive.google.com/file/d/1cF3RHGh-dOsmUcjTbGirv1BdD7XeqDnb/"
download="CV Andres Contreras"
><i class="fa-regular fa-circle-down"></i>Download CV</a
>
</button>
</li>
</ul>
</nav>
</header>
<!-- Main Content -->
<main>
<!-- About me Section -->
<section id="first-container">
<div class="presentation">
<h1>
<span id="welcome">Welcome! I'm </span><br /><span id="name">
Andres Contreras</span
>
</h1>
<h2>Web Developer</h2>
<p>
I'm a web developer with a passion for learning new technologies and
creating new projects. I'm a student of Computer Engineering and
also a self-learner in platforms like
<em>Code Academy, FreeCodeCamp, and Coursera</em>. I have developed
technical skills in my area as well as social and communicative
skills developed by working with diverse groups and as an English
Teacher.
</p>
<a
class="link-button button"
href="https://github.com/Andresc06"
target="_blank"
>
<i class="fa-brands fa-github"></i> GitHub Account
</a>
<a
class="link-button button"
href="https://www.linkedin.com/in/andresc06/"
target="_blank"
>
<i class="fa-brands fa-linkedin"></i> LinkedIn Account
</a>
</div>
<img id="profile-img" src="imgs/andres.avif" alt="" />
</section>
<!-- Skills Section -->
<section id="skills">
<!-- title -->
<h2 id="skills-title">Skills</h2>
<!-- Skill Cards -->
<div class="skill-cards">
<!-- Backend Skill -->
<div class="ability cards hidden" id="backend">
<h3 class="ability-title card-title">Backend</h3>
<lord-icon
src="https://cdn.lordicon.com/hwuyodym.json"
trigger="loop-on-hover"
colors="primary:#005457"
>
</lord-icon>
<div class="skill-cards-content">
<a href="https://nodejs.org/en/docs" target="_blank"
><i class="fa-brands fa-node"></i> Node.js</a
>
<a href="https://www.javascript.com/" target="_blank"
><i class="fa-brands fa-square-js"></i> Javascript</a
>
<a
href="https://www.python.org/"
target="_blank"
id="phyton-skill"
><img src="imgs/python.avif" alt="Phyton logo" /> Phyton</a
>
<a href="https://dev.java/" target="_blank"
><i class="fa-brands fa-java"></i> Java</a
>
</div>
</div>
<!-- Frontend Skill -->
<div class="ability cards hidden" id="frontend">
<h3 class="ability-title card-title">Frontend</h3>
<lord-icon
src="https://cdn.lordicon.com/wluyqhxh.json"
trigger="loop-on-hover"
colors="primary:#ff0058"
>
</lord-icon>
<div class="skill-cards-content">
<a
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank"
><i class="fa-brands fa-html5"></i> HTML5</a
>
<a
href="https://developer.mozilla.org/en-US/docs/Web/CSS"
target="_blank"
><i class="fa-brands fa-css3-alt"></i> CSS3</a
>
<a href="https://reactjs.org/" target="_blank"
><i class="fa-brands fa-react"></i> React</a
>
<a href="https://getbootstrap.com/" target="_blank"
><i class="fa-brands fa-bootstrap"></i> Bootstrap</a
>
</div>
</div>
<!-- Database Management Skill -->
<div class="ability cards hidden" id="databases">
<h3 class="ability-title card-title">Database</h3>
<lord-icon
src="https://cdn.lordicon.com/eliwatfs.json"
trigger="loop-on-hover"
colors="primary:#2c6d3d"
>
</lord-icon>
<div class="skill-cards-content">
<a href="https://www.postgresql.org/" target="_blank"
><img src="imgs/mysql.png" alt="mySQL logo" /> MySQL</a
>
<a href="https://www.postgresql.org/" target="_blank"
><img src="imgs/postgresql.avif" alt="postgreSQL logo" />
PostgreSQL</a
>
<a href="https://www.mongodb.com/" target="_blank"
><img src="imgs/mongodb.avif" alt="mongoDB logo" /> MongoDB</a
>
</div>
</div>
<!-- Git Flow Skill -->
<div class="ability cards hidden" id="git-flow">
<h3 class="ability-title card-title">Git Flow</h3>
<lord-icon
src="https://cdn.lordicon.com/wxhtpnnk.json"
trigger="loop-on-hover"
colors="primary:#ffc107"
>
</lord-icon>
<div class="skill-cards-content">
<a href="https://git-scm.com/" target="_blank"
><i class="fa-brands fa-git-alt"></i> Git
<span>(Versions, Commands, Terminology)</span></a
>
<a href="https://github.com/" target="_blank" id="github-skill"
><i class="fa-brands fa-github github"></i> Github
<span>(Repositories, Pull requests)</span></a
>
</div>
</div>
</div>
</section>
<!-- Certificates Section-->
<section id="certificates">
<!-- title -->
<h2 id="certificates-title">Certificates</h2>
<!-- Certificates Cards -->
<div class="certificate-cards">
<!-- FreeCodeCamp Certificates -->
<div class="certificate cards hidden">
<h3 class="institution-title card-title" id="freecode-title">
FreeCodeCamp
</h3>
<img
src="/imgs/freecodecamp-logo.svg"
class="inst-logo"
alt="FreeCodeCamp Logo"
/>
<div class="certificate-cards-content freecodecamp-links">
<a
href="https://www.freecodecamp.org/certification/andresc06/responsive-web-design"
target="_blank"
>Responsive Web Design</a
>
<a
href="https://www.freecodecamp.org/certification/andresc06/javascript-algorithms-and-data-structures"
target="_blank"
>JavaScript Algorithms and Data Structures</a
>
<a
href="https://www.freecodecamp.org/certification/andresc06/scientific-computing-with-python-v7"
target="_blank"
>Scientific Computing with Python</a
>
</div>
</div>
<!-- Coursera Certificates -->
<div class="certificate cards hidden">
<h3 class="institution-title card-title" id="coursera-title">
Coursera
</h3>
<img
src="/imgs/coursera-logo.avif"
class="inst-logo"
alt="Coursera Logo"
/>
<div class="certificate-cards-content coursera-links">
<a
href="https://www.coursera.org/account/accomplishments/specialization/PFVJ6H3SGZZZ"
target="_blank"
>Web Design for Everybody Specialization by
<span>University of Michigan</span></a
>
<a
href="https://www.coursera.org/account/accomplishments/verify/ESZXDXZS9QCD"
target="_blank"
>HTML, CSS, and Javascript for Web Developers Course by
<span>Johns Hopkins University</span></a
>
<a
href="https://www.coursera.org/account/accomplishments/verify/JM5X6RCNQYZJ"
target="_blank"
>Programming for Everybody Course by
<span>University of Michigan</span></a
>
</div>
</div>
<!-- Cisco Certificates -->
<div class="certificate cards hidden">
<h3 class="institution-title card-title" id="cisco-title">Cisco</h3>
<img
src="/imgs/cisco-logo.webp"
class="inst-logo"
alt="Cisco Logo"
/>
<div class="certificate-cards-content cisco-links">
<a
href="https://www.credly.com/badges/006b41cd-9da4-4d00-a018-24f8c922398b?source=linked_in_profile"
target="_blank"
>CCNA: Introduction to Networks</a
>
<a
href="https://www.credly.com/badges/347e2785-16d6-4e39-8565-0a81f562ef1c?source=linked_in_profile"
target="_blank"
>CCNA: Switching, Routing, and Wireless Essentials</a
>
<a
href="https://www.credly.com/badges/9033cf12-6dc2-41e9-b114-b393c5e35942?source=linked_in_profile"
target="_blank"
>CCNA: Enterprise Networking, Security, and Automation</a
>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects">
<!-- title -->
<h2 id="projects-title">Projects</h2>
<!-- Nav for Filtering Projects -->
<div class="language-divs">
<a
class="language-divs-link active-language"
id="all-projects"
data-cards="all"
>All</a
>
<a class="language-divs-link" id="react-phy" data-cards="react-phy"
>React/Phyton</a
>
<a class="language-divs-link" id="js-projects" data-cards="js"
>JavaScript</a
>
<a class="language-divs-link" id="html-projects" data-cards="html-css"
>HTML/CSS</a
>
</div>
<!-- Projects Cards -->
<div class="project-cards">
<!-- Cryptopals Project -->
<div class="project react-phy js" id="cryptopals">
<h3 class="project-title">Cryptopals Wallet</h3>
<p class="gone" id="info-cryptopals">
A functional Crypto Wallet done in two months with a classmate
where I learned about teamwork and how to work under pressure. It
uses <span>BINANCE API</span> to manage
<em style="color: #28b463">REAL money</em>.
</p>
<a
href="https://cryptopals-wallet.netlify.app/"
target="_blank"
class="project-button"
>Go to Web Page</a
>
</div>
<!-- Dungeon Tiles Project -->
<div class="project js" id="dungeon-tiles">
<h3 class="project-title">Dungeon Tiles</h3>
<p class="gone" id="info-dungeon-tiles">
This is a game written in JavaScript that involves moving around a
character in a dungeon-like environment, collecting a key, and
opening doors while avoiding enemies. It uses
<span>Canvas API</span> as base of the map engine.
</p>
<a
href="https://dungeon-tiles.vercel.app/"
target="_blank"
class="project-button"
>Go to Web Page</a
>
</div>
<!-- Whiteboard Project -->
<div class="project js html-css" id="whiteboard">
<h3 class="project-title">Whiteboard Canvas App</h3>
<p class="gone" id="info-whiteboard">
This is a real-time collaborative drawing app built with
<span>Socket.io, HTML Canvas, and Express.js</span>. Multiple
users can connect to the dashboard and draw simultaneously on
different canvases.
</p>
<a
href="https://github.com/Andresc06/whiteboard-project"
target="_blank"
class="project-button"
>Go to GitHub Repository</a
>
</div>
<!-- Chatbot Project -->
<div class="project js" id="chatbot">
<h3 class="project-title">Foo Market (Chatbot)</h3>
<p class="gone" id="info-chatbot">
It's a Telegram bot that allows you to buy products. It uses
<span>Axios, NodeMailer, Telebot, and MongoDB</span> as backend
and <span>Telegram API</span> as frontend.
</p>
<a
href="https://github.com/Andresc06/Chatbot-FooMarket"
target="_blank"
class="project-button"
>Go to GitHub Repository</a
>
</div>
<!-- System Market Project -->
<div class="project html-css" id="system-market">
<h3 class="project-title">System Market</h3>
<p class="gone" id="info-system-market">
It is a WebPage where I used different JS libraries. Here, I
recommend a series of technology stuff like laptops, which I
consider popular brands such as Lenovo, Apple, ASUS, and Hp. It
uses <span>Bootstrap framework</span>
</p>
<a
href="https://systems-market-page3.netlify.app/"
target="_blank"
class="project-button"
>Go to Web Page</a
>
</div>
<!-- Enterpreneurs Inc Project -->
<div class="project html-css" id="enterpreneurs">
<h3 class="project-title">Enterpreneurs Inc</h3>
<p class="gone" id="info-enterpreneurs">
My real first Web Page. It is a 3-in-1 Webpage where I talk about
Bussiness Lessons from Elon Musk as well as the bussinesses that
he owns. Moreover, there are bibliografies of important
entrepreneurs who I think are the most interesting.
</p>
<a
href="https://enterpreneurs-inc-page1.netlify.app/"
target="_blank"
class="project-button"
>Go to Web Page</a
>
</div>
<!-- Payroll Project -->
<div class="project js html-css" id="payroll">
<h3 class="project-title">Payroll Manager</h3>
<p class="gone" id="info-payroll">
Its principal utility is to facilitate to managers make payrolls
to each worker in a company. That being said, it uses a JSON as a
database and it's made with
<span>JavaScript, HTML, and CSS</span>.
</p>
<a
href="https://payroll-manager.vercel.app/"
target="_blank"
class="project-button"
>Go to Web Page</a
>
</div>
<!-- Old Portfolio Project -->
<div class="project html-css" id="old-portfolio">
<h3 class="project-title">Old Portfolio Page</h3>
<p class="gone" id="info-old-portfolio">
This is the Final project I made in the Course "Web Design for
Everybody" from Coursera. Even though, It's a old version, I'm
proud of my work. I made this page using my knowledge that I took
in Coursera, Udemy, and my years at the University.
</p>
<a
href="https://portfolio-page-andresc06.netlify.app/"
target="_blank"
class="project-button"
>Go to Web Page</a
>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact-section" id="contact-me">
<!-- Title -->
<h2 id="contact-title">Contact Me</h2>
<div class="contact-container">
<!-- Links for my Social Media -->
<div class="contact-links">
<h3>My Contact Links</h3>
<nav class="nav-contact">
<a href="tel:+13462641335" class="contact-link"
><i class="fa-solid fa-phone-volume fa-xs"></i>
+1-346-264-1335</a
>
<a
href="https://github.com/Andresc06"
id="profile-link"
class="contact-link"
target="_blank"
><i class="fab fa-github"></i> Git Hub</a
>
<a
href="https://www.linkedin.com/in/andresc06/"
class="contact-link"
target="_blank"
><i class="fab fa-linkedin"></i> Linkedin</a
>
<a
href="https://twitter.com/andresc_066"
class="contact-link"
target="_blank"
><i class="fab fa-twitter"></i> Twitter</a
>
<a href="https://wa.me/13462641335" class="contact-link"
><i class="fa-brands fa-whatsapp"></i> WhatsApp</a
>
</nav>
</div>
<!-- Contact Form -->
<div class="form-part">
<h3>Drop a Line</h3>
<form action="#" class="contact-form">
<div class="name-group">
<label for="name-input">Name</label>
<input
type="text"
id="name-input"
placeholder="Name"
name="name"
required
/>
</div>
<div class="email-group">
<label for="email">Email</label>
<input
type="email"
id="email"
placeholder="Email"
name="email"
required
/>
</div>
<div class="phone-group">
<label for="phone">Phone</label>
<input
type="tel"
id="phone"
placeholder="Phone"
name="phone"
required
/>
</div>
<div class="location-group">
<label for="location">Location</label>
<input
type="text"
id="location"
placeholder="Location"
name="location"
required
/>
</div>
<div class="message-group">
<label for="message">Message</label>
<textarea
id="message"
placeholder="Your Message"
name="message"
rows="5"
></textarea>
</div>
<button type="submit" class="classic-btn button">Submit</button>
</form>
</div>
</div>
</section>
</main>
<footer class="page-footer">
<!-- Copyright -->
<p class="footer-copyright">© 2023 Copyright Andres Contreras</p>
</footer>
</body>
<script src="js/index.js"></script>
</html>