-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
206 lines (191 loc) · 6.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link rel="shortcut icon" type="img/x-icon" href="img/logo.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
/>
<script
src="https://kit.fontawesome.com/f16558b854.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="css/animation-bg.css" />
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400&family=Source+Sans+Pro:wght@400;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Background animation -->
<div class="wrapper">
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<header>
<div class="logo">
<img src="img/logo.png" alt="" />
</div>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="#home" class="nav__link">Home</a></li>
<li class="nav__item">
<a href="#services" class="nav__link">My Services</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About Me</a>
</li>
<li class="nav__item">
<a href="#work" class="nav__link">My Work</a>
</li>
</ul>
</nav>
</header>
<!--Introduction-->
<section class="intro" id="home">
<h1 class="section__title section__title--intro">
Hi, I am <strong>Jorge Caceres</strong>
</h1>
<p class="section__subtitle section__subtitle--intro"></p>
<img src="img/jorge-1.jpg" alt="Jorge in a river" class="intro__img" />
</section>
<!--My Services-->
<section class="my-services" id="services">
<h2 class="section__title section__title--services">What I do</h2>
<div class="services">
<div class="service">
<h3>Web Design</h3>
<p>
If your idea is to have a well stylished and animated website, I am
the person for you. I have experience with landingpages, apps, fun
interations and animations that will skyrocket your business to
reach the levels you expect it to get.
</p>
</div>
<!--service-->
<div class="service">
<h3>Front-end</h3>
<p>
I know well enough what you need to create that project you have in
mind. My stack takes over front-end technologies that include: HTML,
CSS styling and animation, SVG, Canvas, Javascript, DOM interaction,
React for incredible apps, jQuery for legacy code, SASS, Redux,
Bootstrap, among others I can always look forward to learning and
use!
</p>
</div>
<!--service-->
<div class="service">
<h3>Back-end</h3>
<p>
At the same time, if you require someone who can help you with
handling a server-side project, API requests, data management and
more, I am here at your service. Things I like to use for these:
Node JS, Express JS, SQLite and MongoDB.
</p>
</div>
<!--service-->
</div>
<!--services-->
<a href="#work" class="btn">My Work</a>
</section>
<!--About Me-->
<section class="about-me" id="about">
<h2 class="section__title section__title--about">My story</h2>
<p class="section__subtitle section__subtitle--about">
Path towards software engineering
</p>
<div class="about-me__body">
<p>
It's been several years now since I started learning to code. I first
fell in love with languages, of which I can speak English, Portuguese,
French and Spanish; the latter being my mother tongue. That gave me
inspiration to start teaching English (I even had an institute of my
own) and overcome my awkwardness when speaking to others. I then
decided to major in business administration to learn about a field I
consider is highly useful for the real world; but it was at that point
I realized it was coding what I wanted to do.
</p>
<p>
My first resources were mainly free online courses, which were more
than enough to gain inspiration, start Computer Science in college and
become the person I am today and I want to be in the future.
</p>
</div>
<img
src="img/jorge-2.jpg"
alt="Jorge's Picture Smiling"
class="about-me__img"
/>
</section>
<!--My Work-->
<section class="my-work" id="work">
<h2 class="section__title section__title--work">My Work</h2>
<p class="section__subtitle section__subtitle--work">
Check out some of the projects I've built, or visit
<a
href="https://github.com/jaco9419"
target="_blank"
class="section__link--work"
>
<i class="fab fa-github"></i> my Github profile
</a>
for more.
</p>
<div class="portfolio">
<!-- Portfolio Items handled in main.js -->
</div>
</section>
<!--Footer-->
<footer class="footer">
<a href="mailto:[email protected]" class="footer__link">
</a>
<ul class="social-list">
<li class="social-list__item">
<a href="https://github.com/jaco9419" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
<li class="social-list__item">
<a
href="https://www.freecodecamp.org/fcc077b370a-3d43-49a9-bee4-239b14ab4c99"
target="_blank"
>
<i class="fab fa-free-code-camp"></i>
</a>
</li>
<li class="social-list__item">
<a href="https://www.linkedin.com/in/jorge-caceres/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="social-list__item">
<a href="https://twitter.com/jorge_software" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</li>
</ul>
</footer>
<script type="module" src="js/main.js"></script>
</body>
</html>