-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
466 lines (422 loc) · 25.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rodrigo Aguilar - Portfolio</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Custom fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700,700i,900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/dbb23233f4.js"></script>
<!-- WOW -->
<link rel="stylesheet" href="css/animate.css">
<!-- Custom stylesheets -->
<link href='css/custom.css' rel='stylesheet'>
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Popper -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<!-- WOW -->
<script src="js/wow.min.js"></script>
<!-- Custom Scripts -->
<script src='js/application.js'></script>
</head>
<body>
<header class="header header-absolute">
<!-- Navbar-->
<nav class="navbar navbar-light navbar-expand-lg bg-transparent fixed-top navbar-airy bg-hover-white bg-fixed-white navbar-hover-light navbar-fixed-light navbar-expand-md">
<div class='container-wide'>
<a class="navbar-brand" href="#">Rodrigo J Aguilar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link" href="#home">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#work">Work</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- /Navbar -->
</header>
<section class='home image-bg' id='home'>
<div class='white-image-overlay'>
<div class="container">
<div class="row section-separator xs-column-reverse vertical-middle-content home-padding">
<div class="col-sm-6">
<div class="header-info">
<div class="promo wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.1s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.1s; animation-name: fadeInUp;">
<span>Hello I'm</span>
</div>
<h2 class="wow fadeInUp title" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">Rodrigo J Aguilar</h2>
<h4 class="wow fadeInUp subtitle my-2" data-wow-duration="0.8s" data-wow-delay="0.3s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.3s; animation-name: fadeInUp;">Developer</h4>
<ul>
<li class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.4s; animation-name: fadeInUp;"><i class="fa fa-envelope"></i><span>[email protected]</span></li>
<li class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.5s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.5s; animation-name: fadeInUp;"><i class="fa fa-phone"></i><span>(323) 302 1028</span></li>
<li class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.6s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.6s; animation-name: fadeInUp;"><i class="fa fa-map-marker"></i><span>1227 East 73 Street, Los Angeles, California 90001</span></li>
</ul>
<ul class="social-icon wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.7s; animation-name: fadeInUp;">
<li><a href="https://twitter.com/raguila8"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://github.com/raguila8"><i class="fab fa-github"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-6">
<div class="hero-img wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.6s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.6s; animation-name: fadeInUp;">
<div class="img-border">
<img src="images/me.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class='about' id='about'>
<div class="custom-container">
<div class="row row-align-left section-separator">
<div class="col-md-8 offset-md-2 col-lg-6 offset-lg-3 col-xl-6 offset-xl-0">
<div class="about-img shadow-2 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.4s; animation-name: fadeInUp;">
<img src="images/about_me.svg" alt="" class="img-fluid">
</div>
</div>
<div class="col-lg-12 col-xl-6">
<div class='about-inner'>
<h2 class="title wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.1s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.1s; animation-name: fadeInUp;">
<span class="">About Me</span>
</h2>
<div class="description">
<p class='wow fadeInUp' data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
I graduated from Johns Hopkins University with a Bachelor of Science in
Physics with a second major in Mathematics. My curiosity and fascination
with the way the world works drew me into the world of programming and development.
Computer science and physics are fundamentally similar in that physics explains
the nature of the world using logic and mathematics, while computer science
enables you to create new worlds using logic and mathematics.
When you open a text editor, the potential ranges from printing the words
"hello world" onto your computer screen, to writing the software that put
a man on the moon. The possibilities are endless, and this is what excites me
and interests me the most in programming. I have the rest of my life in
front of me and I cannot imagine what I will have the potential to make.
</p>
</div>
<a href="/" class="btn btn-accent wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.4s; animation-name: fadeInUp;">Contact</a>
</div>
</div>
</div>
</div>
</section>
<section class='skills' id='skills'>
<div class='container'>
<div class='row section-separator'>
<div class="col-sm-12 col-md-10 offset-md-1 text-center wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
<h2 class='title'>Technical Skills</h2>
<div class="description pb-3">
<p class='wow fadeInUp' data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
I'm adept with the web development framework Ruby on Rails,
general purpose langauges C, C++ and Java, and the core world
wide web technologies HTML, CSS and Javascript along with the framework
jQuery. I also have experience with the Ruby language, the version
control system Git and relational database management system SQLite.
</p>
</div>
<div class="skill-tags wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.3s; animation-name: fadeInUp;">
<ul>
<li><span>C++</span></li>
<li><span>C</span></li>
<li><span>Java</span></li>
<li><span>Ruby</span></li>
<li><span>Python</span></li>
<li><span>HTML</span></li>
<li><span>CSS</span></li>
<li><span>Javascript</span></li>
<li><span>jQuery</span></li>
<li><span>Ruby on Rails</span></li>
<li><span>Git</span></li>
<li><span>SQLite</span></li>
<li><span>PostgresSQL</span></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class='work' id='work'>
<div class='container'>
<div class='section-separator'>
<div class="col-sm-12 col-md-10 offset-md-1 text-center wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
<h2 class='title'>Projects</h2>
</div>
<div class="row justify-content-lg-between align-items-center">
<div class="col-lg-5 order-lg-2 mb-2 mb-lg-0">
<h2 class="h3 font-weight-bold mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">Dose of Physics</h2>
<p class="font-weight-normal lead mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
Dose of Physics is a website dedicated to a series of challenging
physics problems. The project is a platform for the curious mind to
delve into the world of physics and learn mathematical and physical
concepts in a fun and recrational way.
</p>
<a href="https://www.doseofphysics.com" target="_blank" class="btn btn-accent btn-rounded mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.3s; animation-name: fadeInUp;">
Go to site
</a>
</div>
<div class="col-lg-6 order-lg-1">
<a href="https://www.doseofphysics.com" target="_blank">
<figure class="img-overlay wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.4s; animation-name: fadeInUp;">
<img src="images/dop_project2.png" alt="..." class="border-dark img-thumbnail">
<div class="img-hover">
<span class="img-text">View Project</span>
</div>
</figure>
</a>
</div>
</div>
<div class="row justify-content-lg-between align-items-center mt-6">
<div class="col-lg-5 order-lg-1 mb-2 mb-lg-0">
<h2 class="h3 font-weight-bold mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">Entertainment Hell</h2>
<p class="font-weight-normal lead mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
Entertainment Hell does curation. It is a platform that makes
users' lives easier and simpler by bringing them the most
relevant and compelling horror content in the internet from
thousands of sources. Entertinment Hell scours through the
internet, makes sense of the noise and cuts the clutter.
It brings content from the best providers in one place.
</p>
<a href="https://www.entertainmenthell.com" target="_blank" class="btn btn-accent btn-rounded mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.3s; animation-name: fadeInUp;">
Go to site
</a>
</div>
<div class="col-lg-6 order-lg-2">
<a href="https://www.entertainmenthell.com" target="_blank">
<figure class="img-overlay wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.4s; animation-name: fadeInUp;">
<img src="images/entertainmenthell.png" alt="..." class="border-dark img-thumbnail">
<div class="img-hover">
<span class="img-text">View Project</span>
</div>
</figure>
</a>
</div>
</div>
<div class="row justify-content-lg-between align-items-center mt-6">
<div class="col-lg-5 order-lg-2 mb-2 mb-lg-0">
<h2 class="h3 font-weight-bold mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">Project Halmos</h2>
<p class="font-weight-normal lead mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
Project Halmos is a website dedicated to a compendium of
mathematical proofs. It is a platform for lovers of mathematics
to grow, discover and communicate nature's patterns through
mathematical truths.
</p>
<a href="https://www.projecthalmos.com" target="_blank" class="btn btn-accent btn-rounded mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.3s; animation-name: fadeInUp;">
Go to site
</a>
</div>
<div class="col-lg-6 order-lg-1">
<a href="https://www.projecthalmos.com" target="_blank">
<figure class="img-overlay wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.4s; animation-name: fadeInUp;">
<img src="images/project_halmos_preview.png" alt="..." class="border-dark img-thumbnail">
<div class="img-hover">
<span class="img-text">View Project</span>
</div>
</figure>
</a>
</div>
</div>
<div class="row justify-content-lg-between align-items-center mt-6">
<div class="col-lg-5 order-lg-1 mb-2 mb-lg-0">
<h2 class="h3 font-weight-bold mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">Movie App</h2>
<p class="font-weight-normal lead mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
The Movie App is a movie info app that uses <a href="https://developers.themoviedb.org/3/getting-started/introduction" target="_blank">The Movie DB API</a>.
The site features a minimalist UI with a variety of listings,
fine-grained searching functionality, and information on films
including cast, crew, images, videos and more.
</p>
<a href="https://moviebucket.herokuapp.com/" target="_blank" class="btn btn-accent btn-rounded mb-3 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.3s; animation-name: fadeInUp;">
Go to site
</a>
</div>
<div class="col-lg-6 order-lg-2">
<a href="https://moviebucket.herokuapp.com/" target="_blank">
<figure class="img-overlay wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.4s; animation-name: fadeInUp;">
<img src="images/movieapp.png" alt="..." class="border-dark img-thumbnail">
<div class="img-hover">
<span class="img-text">View Project</span>
</div>
</figure>
</a>
</div>
</div>
</div>
</div>
</section>
<section class='small-projects' id='small-projects'>
<div class='container'>
<div class='section-separator'>
<div class='row'>
<div class="col-sm-12 col-md-10 offset-md-1 text-center wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
<h2 class='title'>Small Projects</h2>
<div class="description pb-3">
<p class='wow fadeInUp' data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
A collection of smaller hobby projects
</p>
</div>
</div>
</div>
<div class='row'>
<div class='col-lg-4 col-sm-6 sp-item mb-4'>
<a href="https://fierce-thicket-84989.herokuapp.com/" target="_blank">
<div class='sp-item-content-wrap'>
<div class='sp-item-content-inner'>
<div class='sp-icon mb-2'>
<img src="images/waldo_glasses.svg" alt="Waldo App Icon" class="">
<!--<%= inline_svg "icons/branches/#{branch.name.parameterize.underscore}.svg", class: "" %>-->
</div>
<div class='sp-item-content'>
<h6 class='subheading mb-3'> 01 </h6>
<h4 class='heading'> Waldo App </h4>
</div>
</div>
</div>
</a>
</div>
<div class='col-lg-4 col-sm-6 sp-item mb-4'>
<a href="https://www.rodrigojaguilar.com/sketchpad/index.html" target="_blank">
<div class='sp-item-content-wrap'>
<div class='sp-item-content-inner'>
<div class='sp-icon mb-2'>
<img src="images/sketchpad.svg" alt="Sketchpad Icon" class="">
<!--<%= inline_svg "icons/branches/#{branch.name.parameterize.underscore}.svg", class: "" %>-->
</div>
<div class='sp-item-content'>
<h6 class='subheading mb-3'> 02 </h6>
<h4 class='heading'> Sketchpad </h4>
</div>
</div>
</div>
</a>
</div>
<div class='col-lg-4 col-sm-6 sp-item mb-4'>
<a href="https://www.rodrigojaguilar.com/snake/index.html" target="_blank">
<div class='sp-item-content-wrap'>
<div class='sp-item-content-inner'>
<div class='sp-icon mb-2'>
<img src="images/snake.svg" alt="Snake Icon" class="">
<!--<%= inline_svg "icons/branches/#{branch.name.parameterize.underscore}.svg", class: "" %>-->
</div>
<div class='sp-item-content'>
<h6 class='subheading mb-3'> 03 </h6>
<h4 class='heading'> Snake Game </h4>
</div>
</div>
</div>
</a>
</div>
<div class='col-lg-4 col-sm-6 sp-item mb-4'>
<a href="https://www.rodrigojaguilar.com/tictactoe/index.html" target="_blank">
<div class='sp-item-content-wrap'>
<div class='sp-item-content-inner'>
<div class='sp-icon mb-2'>
<img src="images/tictactoe.svg" alt="TicTacToe Icon" class="">
<!--<%= inline_svg "icons/branches/#{branch.name.parameterize.underscore}.svg", class: "" %>-->
</div>
<div class='sp-item-content'>
<h6 class='subheading mb-3'> 04 </h6>
<h4 class='heading'> TicTacToe </h4>
</div>
</div>
</div>
</a>
</div>
<div class='col-lg-4 col-sm-6 sp-item mb-4'>
<a href="https://www.rodrigojaguilar.com/weather_app/index.html" target="_blank">
<div class='sp-item-content-wrap'>
<div class='sp-item-content-inner'>
<div class='sp-icon mb-2'>
<img src="images/weather.svg" alt="Weather App Icon" class="">
<!--<%= inline_svg "icons/branches/#{branch.name.parameterize.underscore}.svg", class: "" %>-->
</div>
<div class='sp-item-content'>
<h6 class='subheading mb-3'> 05 </h6>
<h4 class='heading'> Weather App </h4>
</div>
</div>
</div>
</a>
</div>
<div class='col-lg-4 col-sm-6 sp-item mb-4'>
<a href="https://www.rodrigojaguilar.com/calculator/index.html" target="_blank">
<div class='sp-item-content-wrap'>
<div class='sp-item-content-inner'>
<div class='sp-icon mb-2'>
<img src="images/calculator.svg" alt="Calculator Icon" class="">
</div>
<div class='sp-item-content'>
<h6 class='subheading mb-3'> 06 </h6>
<h4 class='heading'> Calculator </h4>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
<section class='contact' id='contact'>
<div class='container'>
<div class='row section-separator'>
<div class="col-sm-12 col-md-10 offset-md-1 text-center wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
<h2 class='title'>Get in touch with me</h2>
<div class="description pb-2">
<p class='wow fadeInUp' data-wow-duration="0.8s" data-wow-delay="0.2s" style="visibility: hidden; animation-duration: 0.8s; animation-delay: 0.2s; animation-name: fadeInUp;">
I am available for hire on a freelance or contract basis. Feel free to send me an email.
</p>
</div>
<a href="mailto:[email protected]" class="btn btn-accent wow fadeInUp" >
<i class="fa fa-envelope fa-fw"></i>
<span class="network-name">Contact</span>
</a>
</div>
</div>
</div>
</section>
<footer>
<div class="fix-wrap">
<div class="copyright">
<span class="copytext">© 2019</span>
<span class="allrights-reserved">© All Rights Reserved </span>
<span class="footer-links"></span>
</div>
<div class="social-right social-icon">
<li>
<a href="https://twitter.com/raguila8" target= "_blank" class= 'btn-tw btn-social-circle'>
<i class='fab fa-twitter'></i>
</a>
</li>
<li>
<a href="https://github.com/raguila8" target= "_blank" class= 'btn-fb btn-social-circle'>
<i class='fab fa-github'></i>
</a>
</li>
</div>
</div>
</footer>
</body>
</html>