-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
366 lines (339 loc) · 19.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>
Javinez Paul | Web Developer
</title>
<meta name="description" content="My Portfolio" />
<meta name="keywords" content="My CV" />
<meta name="author" content="Javinez Paul" />
<link rel="stylesheet" href="assets/css/styles.css" />
<!--Replace with your tailwind.css once created-->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet" />
<link rel="icon" href="assets/favicon/favicon_p.svg">
<!-- Define your gradient here - use online tools to find a gradient matching your branding-->
<style>
.gradient {
background: linear-gradient(100deg, #d53369 0, #daae51 100%);
}
</style>
</head>
<body class="leading-normal tracking-normal text-white gradient" style="font-family: 'Source Sans Pro', sans-serif;">
<!--Nav-->
<nav id="header" class="fixed w-full z-30 top-0 text-white shadow-2xl">
<div class="w-full container mx-auto flex flex-wrap items-center justify-between mt-0 py-2">
<div class="pl-4 flex items-center">
<img src="./assets/headericon/bracket.svg" alt="bracket" width="35px" height="20px">
<a class="toggleColour text-white no-underline hover:no-underline font-bold text-2xl lg:text-4xl" href="#">
<!--Icon from: http://www.potlabicons.com/ -->
Javinez Paul
</a>
</div>
<div class="block lg:hidden pr-4">
<button id="nav-toggle" class="flex items-center p-1 text-pink-800 hover:text-gray-900 focus:outline-none focus:shadow-outline transform transition hover:scale-105 duration-300 ease-in-out">
<svg class="fill-current h-6 w-6" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<title>Menu</title>
<path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z" />
</svg>
</button>
</div>
<div class="w-full flex-grow lg:flex lg:items-center lg:w-auto hidden mt-2 lg:mt-0 bg-white lg:bg-transparent text-black p-4 lg:p-0 z-20" id="nav-content">
<ul class="list-reset lg:flex justify-end flex-1 items-center">
<li class="mr-3">
<a class="inline-block py-2 px-4 text-black no-underline" href="#profile">Profile</a>
</li>
<li class="mr-3">
<a class="inline-block text-black no-underline hover:text-gray-800 hover:text-underline py-2 px-4" href="#skills">Skills</a>
</li>
<li class="mr-3">
<a class="inline-block text-black no-underline hover:text-gray-800 hover:text-underline py-2 px-4" href="#projects">Projects</a>
</li>
<li class="mr-3">
<a class="inline-block text-black no-underline hover:text-gray-800 hover:text-underline py-2 px-4" href="#contacts">Contact</a>
</li>
</ul>
<!-- <button
id="navAction"
class="mx-auto lg:mx-0 hover:underline bg-white text-gray-800 font-bold rounded-full mt-4 lg:mt-0 py-4 px-8 shadow opacity-75 focus:outline-none focus:shadow-outline transform transition hover:scale-105 duration-300 ease-in-out"
>
Action
</button> -->
</div>
</div>
<hr class="border-b border-gray-100 opacity-25 my-0 py-0" />
</nav>
<!--Hero-->
<div class="pt-24" id="profile">
<div class="container px-3 mx-auto flex flex-wrap flex-col md:flex-row items-center">
<!--Left Col-->
<div class="flex flex-col w-full md:w-2/5 justify-center items-start text-center md:text-left">
<p class="uppercase tracking-loose w-full">Hello!</p>
<h1 class="my-4 text-2xl font-bold leading-tight">
I'm Javinez Paul Software / Web Developer.
</h1>
<p class="leading-normal text-2xl mb-8">
Make it simple! I Love Coding while music.
</p>
<a href="./assets/mycv/JAVINEZ PAUL G_CV.pdf" class="mx-auto lg:mx-0 hover:underline bg-white text-gray-800 font-bold text-sm rounded-full my-6 py-4 px-8 shadow-lg focus:outline-none focus:shadow-outline transform transition hover:scale-105 duration-300 ease-in-out">
Download CV
</a>
</div>
<!--Right Col-->
<div class="w-full md:w-3/5 py-6 text-center">
<img class="w-full md:w-4/5 z-50 rounded-2xl" src="./assets/svg_vector/undraw_split_testing_l1uw.svg" />
</div>
</div>
</div>
<div class="relative -mt-12 lg:-mt-24">
<svg viewBox="0 0 1428 174" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-2.000000, 44.000000)" fill="#FFFFFF" fill-rule="nonzero">
<path d="M0,0 C90.7283404,0.927527913 147.912752,27.187927 291.910178,59.9119003 C387.908462,81.7278826 543.605069,89.334785 759,82.7326078 C469.336065,156.254352 216.336065,153.6679 0,74.9732496" opacity="0.100000001"></path>
<path
d="M100,104.708498 C277.413333,72.2345949 426.147877,52.5246657 546.203633,45.5787101 C666.259389,38.6327546 810.524845,41.7979068 979,55.0741668 C931.069965,56.122511 810.303266,74.8455141 616.699903,111.243176 C423.096539,147.640838 250.863238,145.462612 100,104.708498 Z"
opacity="0.100000001"
></path>
<path d="M1046,51.6521276 C1130.83045,29.328812 1279.08318,17.607883 1439,40.1656806 L1439,120 C1271.17211,77.9435312 1140.17211,55.1609071 1046,51.6521276 Z" id="Path-4" opacity="0.200000003"></path>
</g>
<g transform="translate(-4.000000, 76.000000)" fill="#FFFFFF" fill-rule="nonzero">
<path
d="M0.457,34.035 C57.086,53.198 98.208,65.809 123.822,71.865 C181.454,85.495 234.295,90.29 272.033,93.459 C311.355,96.759 396.635,95.801 461.025,91.663 C486.76,90.01 518.727,86.372 556.926,80.752 C595.747,74.596 622.372,70.008 636.799,66.991 C663.913,61.324 712.501,49.503 727.605,46.128 C780.47,34.317 818.839,22.532 856.324,15.904 C922.689,4.169 955.676,2.522 1011.185,0.432 C1060.705,1.477 1097.39,3.129 1121.236,5.387 C1161.703,9.219 1208.621,17.821 1235.4,22.304 C1285.855,30.748 1354.351,47.432 1440.886,72.354 L1441.191,104.352 L1.121,104.031 L0.457,34.035 Z"
></path>
</g>
</g>
</svg>
</div>
<section class="bg-white border-b py-8">
<div class="container max-w-5xl mx-auto m-8">
<h1 id="projects" class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800">
Projects
</h1>
<div class="w-full mb-4">
<div class="h-1 mx-auto gradient w-64 opacity-25 my-0 py-0 rounded-t"></div>
</div>
<div class="flex flex-wrap">
<div class="w-5/6 sm:w-1/2 p-6">
<p class="text-gray-600 mb-8 text-2xl">
<span class="underline font-bold text-lg">E-LEARNING MANAGEMENT SYSTEM</span> <br />
Programmer – Backend Developer<br />
January 2019 – May 2019<br />
I’m Focused more on functionalities in Create, Read, Delete, Update and also Search in Php MySQL and Asynchronous JavaScript ES5 in short called AJAX to better good experience user.<br />
<br />
<br />
</p>
<a href="https://github.com/allanadan05/adbmsgithub" class="mx-auto lg:mx-0 hover:underline gradient text-white font-bold rounded-full my-6 py-4 px-8 shadow-lg focus:outline-none focus:shadow-outline transform transition hover:scale-105 duration-300 ease-in-out">
Github Source Code
</a>
</div>
<div class="w-full sm:w-1/2 p-6">
<img src="./assets/screenshot/quiz.png" alt="quiz">
</div>
</div>
<div class="flex flex-wrap flex-col-reverse sm:flex-row">
<div class="w-full sm:w-1/2 p-6 mt-6">
<img src="./assets/screenshot/jeepcard.png" alt="capstone">
<img src="./assets/screenshot/jeepcard1.png" alt="capstone">
</div>
<div class="w-full sm:w-1/2 p-6 mt-6">
<div class="align-middle">
<p class="text-gray-600 mb-8 text-2xl">
<span class="underline font-bold text-lg">CAPSTONE - CONTACTLESS FARE PAYMENT FOR MODERN JEEPNEYS<br /></span>
Programmer - Frontend and Backend Developer<br />
January 2020 – February 2021<br />
I’m Focused for worked functionalities such as ADD QRCODE IMAGE and SCAN QRCODE framework to transfer money and also add PHP Mailer for security reason then add latest version JavaScript Es6 and native PHP DATA OBJECT in short called PDO, add some MySQL functionalities such as CRUD and search. Add also colored message to better understand for the user in frontend functionalities.<br />
</p>
<a href="https://www.youtube.com/watch?v=NEZY1VErysc" class="mx-auto lg:mx-0 hover:underline gradient text-white font-bold rounded-full my-6 py-4 px-8 shadow-lg focus:outline-none focus:shadow-outline transform transition hover:scale-105 duration-300 ease-in-out">
Youtube
</a>
</div>
</div>
</div>
<div class="flex flex-wrap">
<div class="w-5/6 sm:w-1/2 p-6">
<p class="text-gray-600 mb-8 text-2xl">
<span class="underline font-bold text-lg">ANDROID STUDIO – GRADE PORTAL</span><br />
Programmer – Backend Developer<br />
February 2021<br />
I’m Focused Functionality such as Create, Read, Update, Delete <br />
Php Volley Framework as well as MySQL Database. To see Grade for Students and also monitor grade for parents to give generate code to access to grades.<br />
<br />
<br />
</p>
<a href="https://github.com/itechpaulj/gportal" class="mx-auto lg:mx-0 hover:underline gradient text-white font-bold rounded-full my-6 py-4 px-8 shadow-lg focus:outline-none focus:shadow-outline transform transition hover:scale-105 duration-300 ease-in-out">
Github Source Code
</a>
</div>
<div class="w-full sm:w-1/2 p-6">
<img src="./assets/screenshot/gportal.jpg" alt="bracket">
</div>
</div>
</div>
</section>
<section class="bg-white border-b py-8"><div class="container mx-auto flex flex-wrap justify-center pt-4 pb-12">
<h2 id="skills" class="w-full my-2 text-3xl font-bold leading-tight text-center text-gray-800 border-none" >
Skills
</h2>
<div class="w-full my-4" >
<div class="h-1 mx-auto gradient w-64 opacity-25 my-0 py-0 rounded-t" >
</div>
</div>
<div class="lg:w-1/3 p-6 flex flex-col flex-shrink" >
<div class="flex-1 bg-white rounded-t rounded-b-none overflow-hidden shadow" >
<div class="flex" >
<div class="w-full font-bold text-xl text-gray-800 pt-6 px-6 pb-3" >
Junior level Developer such as knowledge with PHP and MYSQL.
</div>
</div>
<img src="./assets/skills/php-mysql-logo.png" alt="phpmysql">
</div>
</div>
<div class="lg:w-1/3 p-6 flex flex-col flex-shrink" >
<div class="flex-1 bg-white rounded-t rounded-b-none overflow-hidden shadow" >
<div class="flex" >
<div class="w-full font-bold text-xl text-gray-800 pt-6 px-6 pb-3" >
I’m knowledge with HTML, CSS, and also JavaScript ES6.
</div>
</div>
<img src="./assets/skills/html-css-js-icon.png" alt="phpmysql">
</div>
</div>
<div class="lg:w-1/3 p-6 flex flex-col flex-shrink" >
<div class="flex-1 bg-white rounded-t rounded-b-none overflow-hidden shadow" >
<div class="flex" >
<div class="w-full font-bold text-xl text-gray-800 pt-6 px-6 pb-3" >
I’m Knowledge such as FRAMEWORK CSS BOOTSTRAP 3 at 4 and Tailwind CSS.
</div>
</div>
<img src="./assets/skills/bootstrap_and_tailwind.png" alt="phpmysql">
</div>
</div>
<div class="lg:w-1/3 p-6 flex flex-col flex-shrink" >
<div class="flex-1 bg-white rounded-t rounded-b-none overflow-hidden shadow" >
<div class="flex" >
<div class="w-full font-bold text-xl text-gray-800 pt-6 px-6 pb-3" >
Understanding Framework JavaScript jQuery.
</div>
</div>
<img src="./assets/skills/jquery.png" alt="phpmysql">
</div>
</div>
</section>
<!--Footer-->
<footer class="bg-white" id="contacts">
<div class="container mx-auto">
<div class="w-full flex flex-col md:flex-row py-6">
<!--Contact Us-->
<div class="bg-blue-300 w-full h-64 shadow-2xl rounded-2xl">
<div class="bg-gray-700 bg-opacity-70 h-56 p-10 mt-4 w-full rounded-lg shadow-2xl ">
<div class="flex justify-between flex-col">
<h1 class="text-white font-mono text-sm text-center text-base sm:text-sm md:text-xl lg:text-2xl xl:text-3xl font-bold">Gmail Contact</h1>
<h6 class="text-white font-thin text-sm text-center text-base sm:text-sm md:text-xl lg:text-2xl xl:text-3xl">[email protected]</h3>
</div>
<div class="flex justify-between flex-col text-base sm:text-lg md:text-xl lg:text-2xl xl:text-3xl">
<h1 class="text-white font-mono text-sm text-center text-base sm:text-sm md:text-xl lg:text-2xl xl:text-3xl font-bold">Location</h1>
<h6 class="text-white font-thin text-sm text-center text-base sm:text-sm md:text-xl lg:text-2xl xl:text-3xl">San Jose Del Monte Bulacan, Philippines</h3>
</div>
<div class="flex justify-center flex-row text-base sm:text-lg md:text-xl lg:text-2xl xl:text-3xl">
<a href="https://web.facebook.com/Muckosaurus" class="block mt-3 lg:inline-block lg:mt-0 text-teal-200 hover:text-blue-700 mr-4">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M22.675 0h-21.35c-.732 0-1.325.593-1.325 1.325v21.351c0 .731.593 1.324 1.325 1.324h11.495v-9.294h-3.128v-3.622h3.128v-2.671c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.795.143v3.24l-1.918.001c-1.504 0-1.795.715-1.795 1.763v2.313h3.587l-.467 3.622h-3.12v9.293h6.116c.73 0 1.323-.593 1.323-1.325v-21.35c0-.732-.593-1.325-1.325-1.325z"/></svg>
</a>
<a href="https://github.com/itechpaulj" class="block mt-3 lg:inline-block lg:mt-0 text-teal-200 hover:text-blue-700 mr-4">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg>
</a>
<a href="https://www.linkedin.com/in/paul-javinez-8a03a31a3/" class="block mt-3 lg:inline-block lg:mt-0 text-teal-200 hover:text-blue-700">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/></svg>
</a>
</div>
</div>
<div class="border-b-8 w-full bg-purple-500 bg-opacity-50 h-5 mt-3 rounded-b-3xl">
</div>
</div>
<!--Contact Us-->
</div>
<div class="w-full h-auto text-center text-black font-bold font-mono">
<h1>Copyright © <script>document.write(new Date().getFullYear())</script>.<br /> Made with Tailwind Css </h1>
</div>
</footer>
<!-- jQuery if you need it
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
-->
<script>
var scrollpos = window.scrollY;
var header = document.getElementById("header");
var navcontent = document.getElementById("nav-content");
//var navaction = document.getElementById("navAction");
var brandname = document.getElementById("brandname");
var toToggle = document.querySelectorAll(".toggleColour");
document.addEventListener("scroll", function () {
/*Apply classes for slide in bar*/
scrollpos = window.scrollY;
if (scrollpos > 10) {
header.classList.add("bg-white");
//navaction.classList.remove("bg-white");
//navaction.classList.add("gradient");
//navaction.classList.remove("text-gray-800");
//navaction.classList.add("text-white");
//Use to switch toggleColour colours
for (var i = 0; i < toToggle.length; i++) {
toToggle[i].classList.add("text-gray-800");
toToggle[i].classList.remove("text-white");
}
header.classList.add("shadow");
//navcontent.classList.remove("bg-gray-100");
//navcontent.classList.add("bg-white");
} else {
header.classList.remove("bg-white");
//navaction.classList.remove("gradient");
//navaction.classList.add("bg-white");
//navaction.classList.remove("text-white");
//navaction.classList.add("text-gray-800");
//Use to switch toggleColour colours
for (var i = 0; i < toToggle.length; i++) {
toToggle[i].classList.add("text-white");
toToggle[i].classList.remove("text-gray-800");
}
header.classList.remove("shadow");
navcontent.classList.remove("bg-white");
navcontent.classList.add("bg-gray-100");
}
});
</script>
<script>
/*Toggle dropdown list*/
/*https://gist.github.com/slavapas/593e8e50cf4cc16ac972afcbad4f70c8*/
var navMenuDiv = document.getElementById("nav-content");
var navMenu = document.getElementById("nav-toggle");
document.onclick = check;
function check(e) {
var target = (e && e.target) || (event && event.srcElement);
//Nav Menu
if (!checkParent(target, navMenuDiv)) {
// click NOT on the menu
if (checkParent(target, navMenu)) {
// click on the link
if (navMenuDiv.classList.contains("hidden")) {
navMenuDiv.classList.remove("hidden");
} else {
navMenuDiv.classList.add("hidden");
}
} else {
// click both outside link and outside menu, hide menu
navMenuDiv.classList.add("hidden");
}
}
}
function checkParent(t, elm) {
while (t.parentNode) {
if (t == elm) {
return true;
}
t = t.parentNode;
}
return false;
}
</script>
</body>
</html>