-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (114 loc) · 5.35 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Juan Pelaez</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<div class="home-wrapper">
<a href="" class="logo">JuanPelaez</a>
<nav class="scroll">
<a href="#hello" class="nav-item">Hello</a>
<a href="#profile" class="nav-item">Profile</a>
<a href="#portfolio" class="nav-item">Portfolio</a>
<a href="#contact" class="nav-item">Contact</a>
</nav>
</div>
</div>
</header>
<div class="home-background">
<section id="hello" class="container">
<!-- <h1>Full Stack Developer en formación</h1>
<h2>Hola, mi nombre es Juan David Pelaez</h2>
<p>Soy un ingenierio mecatrónico apasionado por la programación</p> -->
<h1>Full Stack Developer under construction</h1>
<h2>Hello, I'm Juan David Peláez</h2>
<p>Just another coding passionated Engineer, nice to meet you!</p>
</section>
</div>
<section id="profile" class="flex-container">
<h2>Profile</h2>
<div class="flex-left">
<!-- <p><strong>Mi principal objetivo es aprender y seguir creciendo como ingeniero y desarrollador.</strong>
Encontrar una oferta laboral o proyecto que me permita seguir desarrollando mi capacidad para la realización de aplicaciones web, con la oportunidad de la utilización de nuevas tecnologías y herramientas. Tambien me gustaría integrar mis conocimiento de mecatrónico con el desarrollo de web.</p>
<p>Soy un ingeniero Mecatrónico con buen dominio del idioma inglés y software de programación. Me caracterizo por mi <span>capacidad analítica para proponer soluciones</span>, <span>adaptación</span> y <span>rápido aprendizaje</span></p> -->
<p>I am a Mechatronics engineer with a great interest in software programming. Proud of my <span>problem solving</span>, <span>adaptation</span> and <span>fast learning</span> skills. </p>
<p>My principal goal is to keep growing and learning as engineer and developer, so I need to get a job offer that helps me to raise my web development skills, with the chance to constant contact with the trending and latest technologies.</p>
</div>
<div class="flex-right">
<div>
<h3>fullname</h3>
<p>Juan David Pelaez</p>
</div><hr>
<div>
<h3>birth</h3>
<p>March 15th 1993</p>
</div><hr>
<div>
<h3>address</h3>
<p>Medellín, Colombia</p>
</div>
</div>
</section>
<div class="portfolio-background">
<section id="portfolio" class="flex-container">
<h2>Portfolio</h2>
<div class="box">
<img src="images/portfolio.JPG" alt="portfolio">
<h3>Portfolio</h3>
<p>My first web app, built with HTML and CSS</p>
</div>
<div class="box">
<img src="images/404-not-found.jpg" alt="To be done">
<h3>To be done</h3>
<p>A great app will be displayed here</p>
</div>
<div class="box">
<img src="images/404-not-found.jpg" alt="To be done">
<h3>To be done</h3>
<p>A great app will be displayed here</p>
</div>
<div class="box">
<img src="images/404-not-found.jpg" alt="To be done">
<h3>To be done</h3>
<p>A great app will be displayed here</p>
</div>
<div class="box">
<img src="images/404-not-found.jpg" alt="To be done">
<h3>To be done</h3>
<p>A great app will be displayed here</p>
</div>
<div class="box">
<img src="images/404-not-found.jpg" alt="To be done">
<h3>To be done</h3>
<p>A great app will be displayed here</p>
</div>
</section>
</div>
<section id="contact" class="container">
<h2>Contact me</h2>
<div>
<div class="info">
<a href="https://api.whatsapp.com/send?phone=573017443790"><i class="fab fa-whatsapp"></i> Call me or send a message +573017443790</a>
<a href="mailto:[email protected]?Subject=Hola%20Juan"><i class="far fa-envelope"></i> Write an email [email protected]</a>
</div>
<div class="social">
<h3>Reach me on social</h3>
<a href="https://www.linkedin.com/in/juandavidpelaez" target="_blank"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.facebook.com/juandavid.pelaezs" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://github.com/juandavidpelaez/" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</section>
<footer>
Thank you for visiting me. Come back anytime!
</footer>
</body>
</html>