-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
574 lines (535 loc) · 18.8 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
<!DOCTYPE html>
<html>
<title>David Giraldo's Portfolio</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato" />
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="node_modules/font-awesome/css/font-awesome.min.css"
/>
<!-- Boostrap Social-->
<link
rel="stylesheet"
href="node_modules/bootstrap-social/bootstrap-social.css"
/>
<link rel="stylesheet" href="node_modules/mdboostrap/css/mdb.min.css" />
<link rel="stylesheet" href="/css/styles.css" />
<link rel="icon" type="image/png" href="/img/icon.png" />
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar" id="myNavbar">
<a
class="w3-bar-item w3-button w3-hover-black w3-hide-medium w3-hide-large w3-right"
href="javascript:void(0);"
onclick="toggleFunction()"
title="Toggle Navigation Menu"
>
<i class="fa fa-bars"></i>
</a>
<a href="#home" class="w3-bar-item w3-button">HOME</a>
<a href="#about" class="w3-bar-item w3-button w3-hide-small"
><i class="fa fa-user"></i> ABOUT</a
>
<a href="#portfolio" class="w3-bar-item w3-button w3-hide-small"
><i class="fa fa-th"></i> PORTFOLIO</a
>
<a href="#contact" class="w3-bar-item w3-button w3-hide-small"
><i class="fa fa-envelope"></i> CONTACT</a
>
<!-- <a href="#" class="w3-bar-item w3-button w3-hide-small w3-right w3-hover-red">
<i class="fa fa-search"></i>
</a> -->
</div>
<!-- Navbar on small screens -->
<div
id="navDemo"
class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium"
>
<a
href="#about"
class="w3-bar-item w3-button"
onclick="toggleFunction()"
>ABOUT</a
>
<a
href="#portfolio"
class="w3-bar-item w3-button"
onclick="toggleFunction()"
>PORTFOLIO</a
>
<a
href="#contact"
class="w3-bar-item w3-button"
onclick="toggleFunction()"
>CONTACT</a
>
<!-- <a href="#" class="w3-bar-item w3-button">SEARCH</a> -->
</div>
</div>
<!-- First Parallax Image with Logo Text -->
<div class="bgimg-1 w3-display-container w3-opacity-min" id="home">
<div class="w3-display-middle intial-prhase" style="white-space:nowrap;">
<span class="w3-center w3-padding-large w3-black w3-animate-opacity ">
<span class="w3-hide-small">Front End </span> Web Developer</span
>
</div>
</div>
<!-- w3-xlarge w3-wide-->
<!-- Container (About Section) -->
<div class="w3-content w3-container w3-padding-64" id="about">
<h3 class="d-flex justify-content-center">ABOUT ME</h3>
<!-- <p class="d-flex justify-content-center"><em>Always Learning</em></p> -->
<p>
Hello my name is David Giraldo, I am an Electronic Engineer with
emphasis on mechatronics and telecommunications. Interested in web
development areas, blockchain and design innovation.
</p>
<div class="row">
<div class="col-md-6 d-flex justify-content-center align-items-center">
<img
src="/img/david.jpg"
id="davidPhoto"
alt="Photo of Me"
height="200"
/>
</div>
<!-- Hide this text on small devices -->
<div class="col-md-6 d-none d-md-block">
<p>
Welcome to my website. Here you can see some of my work and also my
skills, my main focus is on Front End Web Development. <br /><br />
</p>
<div class="row logo-container justify-content-center">
<div class="col-md-3 justify-content-center">
<img class="img-fluid" src="/img/HTML5.png" alt="HTML5 logo" />
</div>
<div class="col-md-3 justify-content-center">
<img class="img-fluid" src="/img/css.png" alt="CSS logo" />
</div>
<div class="col-md-3 justify-content-center">
<img
class="img-fluid"
src="/img/javascript.png"
alt="JavaScript logo"
/>
</div>
</div>
<div class="row logo-container justify-content-center">
<div class="col-md-3 justify-content-center">
<img
class="img-fluid"
src="/img/bootstrap.png"
alt="Boostrap logo"
/>
</div>
<div class="col-md-3 justify-content-center">
<img class="img-fluid" src="/img/react.png" alt="React logo" />
</div>
<div class="col-md-3 justify-content-center">
<img class="img-fluid" src="/img/node.png" alt="Node logo" />
</div>
</div>
</div>
</div>
</div>
<div class="w3-row w3-center w3-dark-grey w3-padding-16">
<div class="w3-half w3-section">
<span class="w3-xlarge"
>Bachelor of Science in Electronic Engineering</span
><br />
Pontificia Universidad Javeriana Cali
</div>
<div class="w3-half w3-section">
<span class="w3-xlarge"
>Specialization in Full-Stack Web Development with React</span
><br />
The Hong Kong University of Science and Technology (Online)
</div>
</div>
<!-- Second Parallax Image with Portfolio Text -->
<div class="bgimg-2 w3-display-container w3-opacity-min">
<div class="w3-display-middle" style="white-space:nowrap;">
<span
class="w3-center w3-padding-large w3-black w3-xlarge w3-wide w3-animate-opacity"
>
Portfolio</span
>
</div>
</div>
<!-- Container (Portfolio Section) -->
<div class="w3-content w3-container w3-padding-64" id="portfolio">
<h3 class="w3-center">MY WORK</h3>
<p class="w3-center">
<em
>Here are some of my latest work.<br />
Click on the images to make them bigger</em
>
</p>
<br />
<!-- Responsive Grid. Four columns on tablets, laptops and desktops. Will stack on mobile devices/small screens (100% width) -->
<div class="row align-content-center">
<!-- Begin Valor-->
<div class="col-md-6">
<div class="card work-item ">
<img
src="/img/valor.PNG"
style="width:100%; height:18rem;"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="Valor Homes Sales"
/>
<hr />
<div class="card-body">
<div class="row">
<div class="col-12 work-name">
<h2>Valor Homes Sales</h2>
</div>
</div>
<div class="row mt-3 mb-2">
<div class="offset-5 col-1 mr-1">
<a
target="_blank"
class="btn btn-social-icon btn-facebook work-fa"
href="http://valorhomesales.com"
><i class="fa fa-laptop fa-5x"></i
></a>
</div>
<div class="col-4 ml-1">
<a
target="_blank"
class="btn btn-social-icon btn-github work-fa"
href="https://github.com/dagibu301/Valor-Homes-Sales"
><i class="fa fa-github fa-5x"></i
></a>
</div>
</div>
</div>
</div>
</div>
<!-- end Valor -->
<!-- Begin cambuhe-->
<div class="col-md-6">
<div class="card work-item ">
<img
src="/img/cambuche.PNG"
style="width:100%; height:18rem;"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="Make Reservations Online"
/>
<hr />
<div class="card-body">
<div class="row">
<div class="col-12 work-name">
<h2>El Cambuche del Mono</h2>
</div>
</div>
<div class="row mt-3 mb-2">
<div class="offset-5 col-1 mr-1">
<a
target="_blank"
class="btn btn-social-icon btn-facebook work-fa"
href="https://focused-mcnulty-b14397.netlify.com"
><i class="fa fa-laptop fa-5x"></i
></a>
</div>
<div class="col-4 ml-1">
<a
target="_blank"
class="btn btn-social-icon btn-github work-fa"
href="https://github.com/dagibu301/cambuche"
><i class="fa fa-github fa-5x"></i
></a>
</div>
</div>
</div>
</div>
</div>
<!-- end cambuche -->
</div>
<div class="row align-content-center">
<!-- Begin porfolio-->
<div class="col-md-6">
<div class="card work-item ">
<img
src="/img/portfolio.PNG"
style="width:100%; height:18rem;"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="Portfolio"
/>
<hr />
<div class="card-body">
<div class="row">
<div class="col-12 work-name">
<h2>David's Portfolio</h2>
</div>
</div>
<div class="row mt-3 mb-2">
<div class="offset-5 col-1 mr-1">
<a
target="_blank"
class="btn btn-social-icon btn-facebook work-fa"
href="https://dgiraldo.me"
><i class="fa fa-laptop fa-5x"></i
></a>
</div>
<div class="col-4 ml-1">
<a
target="_blank"
class="btn btn-social-icon btn-github work-fa"
href="https://github.com/dagibu301/Portfolio"
><i class="fa fa-github fa-5x"></i
></a>
</div>
</div>
</div>
</div>
</div>
<!-- end portfolio -->
<!-- Begin leader-->
<div class="col-md-6">
<div class="card work-item ">
<img
src="/img/leader.PNG"
style="width:100%; height:18rem;"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="Ristorante ConFusion"
/>
<hr />
<div class="card-body">
<div class="row">
<div class="col-12 work-name">
<h2>Valor Leadership</h2>
</div>
</div>
<div class="row mt-3 mb-2">
<div class="offset-5 col-1 mr-1">
<a
target="_blank"
class="btn btn-social-icon btn-facebook work-fa"
href="https://youthful-torvalds-e11d7f.netlify.com"
><i class="fa fa-laptop fa-5x"></i
></a>
</div>
<div class="col-4 ml-1">
<a
target="_blank"
class="btn btn-social-icon btn-github work-fa"
href="https://github.com/dagibu301/valorleadership"
><i class="fa fa-github fa-5x"></i
></a>
</div>
</div>
</div>
</div>
</div>
<!-- end leader -->
</div>
<div class="row align-content-center">
<!-- Begin confusion-->
<div class="col-md-6">
<div class="card work-item ">
<img
src="/img/confusion.PNG"
style="width:100%; height:18rem;"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="Ristorante ConFusion"
/>
<hr />
<div class="card-body">
<div class="row">
<div class="col-12 work-name">
<h2>Ristorante ConFusion</h2>
</div>
</div>
<div class="row mt-3 mb-2">
<div class="offset-5 col-1 mr-1">
<a
target="_blank"
class="btn btn-social-icon btn-facebook work-fa"
href="https://fervent-fermat-251c5b.netlify.com/"
><i class="fa fa-laptop fa-5x"></i
></a>
</div>
<div class="col-4 ml-1">
<a
target="_blank"
class="btn btn-social-icon btn-github work-fa"
href="https://github.com/dagibu301/Confusion-React"
><i class="fa fa-github fa-5x"></i
></a>
</div>
</div>
</div>
</div>
</div>
<!-- end confusion -->
<!-- Begin pokemon-->
<div class="col-md-6">
<div class="card work-item ">
<img
src="/img/pokemon.PNG"
style="width:100%; height:18rem;"
onclick="onClick(this)"
class="w3-hover-opacity"
alt="Pokemon Card Game"
/>
<hr />
<div class="card-body">
<div class="row">
<div class="col-12 work-name">
<h2>Pokemon Card Game</h2>
</div>
</div>
<div class="row mt-3 mb-2">
<div class="offset-5 col-1 mr-1">
<a
target="_blank"
class="btn btn-social-icon btn-facebook work-fa"
href="https://dagibu301.github.io/pokemon/"
><i class="fa fa-laptop fa-5x"></i
></a>
</div>
<div class="col-4 ml-1">
<a
target="_blank"
class="btn btn-social-icon btn-github work-fa"
href="https://github.com/dagibu301/pokemon"
><i class="fa fa-github fa-5x"></i
></a>
</div>
</div>
</div>
</div>
</div>
<!-- end pokemon -->
</div>
<!-- <button class="w3-button w3-padding-large w3-light-grey" style="margin-top:64px">LOAD MORE</button>-->
</div>
<!-- Modal for full size images on click-->
<div
id="modal01"
class="w3-modal w3-black"
onclick="this.style.display='none'"
>
<span
class="w3-button w3-large w3-black w3-display-topright"
title="Close Modal Image"
><i class="fa fa-remove"></i
></span>
<div
class="w3-modal-content w3-animate-zoom w3-center w3-transparent w3-padding-64"
>
<img id="img01" class="w3-image" />
<p id="caption" class="w3-opacity w3-large"></p>
</div>
</div>
<!-- Third Parallax Image with Portfolio Text -->
<div class="bgimg-3 w3-display-container w3-opacity-min">
<div class="w3-display-middle" style="white-space:nowrap;">
<span
class="w3-center w3-padding-large w3-black w3-xlarge w3-wide w3-animate-opacity"
>
Contact</span
>
</div>
</div>
<!-- Container (Contact Section) -->
<div class="w3-content w3-container w3-padding-64" id="contact">
<h3 class="w3-center">WHERE I WORK</h3>
<p class="w3-center"><em>I'd love your feedback!</em></p>
<div class="w3-row w3-padding-32 w3-section">
<div class="col-md-8 offset-md-2 ">
<div class="w3-large w3-margin-bottom">
<i
class="fa fa-map-marker fa-fw w3-hover-text-black w3-xlarge w3-margin-right"
></i>
Colombia<br />
<i
class="fa fa-envelope fa-fw w3-hover-text-black w3-xlarge w3-margin-right"
></i>
Email: [email protected]<br />
</div>
<p>
Swing by for a cup of <i class="fa fa-coffee"></i>, or leave me a
note:
</p>
<form name="contact" method="POST" data-netlify="true">
<div class="w3-row-padding" style="margin:0 -16px 8px -16px">
<div class="w3-half">
<input
class="w3-input w3-border"
type="text"
placeholder="Name"
required
name="Name"
/>
</div>
<div class="w3-half">
<input
class="w3-input w3-border"
type="text"
placeholder="Email"
required
name="Email"
/>
</div>
</div>
<input
class="w3-input w3-border"
type="text"
placeholder="Message"
required
name="Message"
/>
<button
class="w3-button w3-black w3-right w3-section"
type="submit"
>
<i class="fa fa-paper-plane"></i> SEND MESSAGE
</button>
</form>
</div>
</div>
</div>
<!-- Footer -->
<footer
class="w3-center w3-black w3-padding-64 w3-opacity w3-hover-opacity-off"
>
<a href="#home" class="w3-button w3-light-grey"
><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a
>
<div class="w3-xlarge w3-section">
<!--Linkedin-->
<a target="_blank"
class="btn btn-social-icon btn-linkedin"
href="https://www.linkedin.com/in/david-giraldo-bueno/"
><i class="fa fa-linkedin fa-lg"></i
></a>
<!--Github-->
<a target="_blank"
class="btn btn-social-icon btn-github"
href="https://github.com/dagibu301/"
><i class="fa fa-github fa-lg"></i
></a>
</div>
</footer>
<script src="js/scripts.js"></script>
<!-- jQuery first, then Popper.js, then Bootstrap JS. -->
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>