-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
244 lines (150 loc) · 4.64 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
<!DOCTYPE html>
<html>
<head>
<title>Dex Joshua Curayag - CV</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<img src="images/Dejoyag.jpg" alt="Dex Joshua Curayag" id="profile-pic">
<h1 >Dex Joshua Curayag</h1>
<h2>BS-Computer Science</h2>
</header>
<main>
<section id="education">
<h3>Education:</h3>
<ul>
<li>Primary, Corella Central Elementary School</li>
<li>Secondary(Junior Highschool), Lance Scitech Academy</li>
<li>Secondary(Senior Highschool), STI Colleges Bohol</li>
<li>Bachelor of Computer Science, Bohol Island State University - Balilihan Campus</li>
</ul>
</section>
<section id="work-experience">
<h3>Work Experience:</h3>
<ul>
<dl>
<dt><li>(Work Immersion)IT Specialist, STI Colleges Bohol</li></dt>
<dd>
<li>Unit Assembly & Installation</li>
<li>Hardware & Software Troubleshooting</li>
</dd>
</dl>
</ul>
</section>
<section id="skills">
<h3>Skills:</h3>
<ul>
<li>Java</li>
<li>HTML/CSS/JavaScript</li>
<li>Video Editing</li>
<li>Sound Design</li>
<li>Graphic Design</li>
</ul>
</section>
<section id="trainings">
<h3>Trainings & Seminars Attendes:</h3>
<ul>
<li>Arduino & Lego Robotics Training/Seminar</li>
</ul>
</section>
<section id="orgs">
<h3>Organizations Involved:</h3>
<ul>
<li>GreEnvironment (A Non-profit Organization)</li>
<li>Legions (A Campus Organization)</li>
</ul>
</section>
<section id="achievements">
<h3>Achievements:</h3>
<ul>
<li>Best in Research during Senior High level at STI Colleges Bohol</li>
<li>Reached the national competition for the Philippine Robotics Competition 2018</li>
</ul>
</section>
</main>
<footer>
<p>Contact Me:</p>
<ul>
<li>📩Email: [email protected]</li>
<li>📞Phone: (+63)192300305</li>
<li>👤Facebook: <a href="https://facebook.com/dexjoshua.curayag.5/?comment_id=Y29tbWVudDoxMjQ3MzYzNjkyNjA5MTRfMTI2MDc2MjYyNDYwMjU4">Dex Joshua Curayag</a></li>
<li>🧭Location: Anislag, Corella, Bohol, Philippines</li>
</ul>
</footer>
<div
class="container"
style="
width: fit-content;
position: fixed;
width: 300px;
display: flex;
flex-direction: column;
z-index:100000;
bottom: 20px; right: 30px; align-items: flex-end;flex-direction: column
"
>
<iframe
id="box"
src=https://app.flowcharts.ai/web_to_sms/Nyrcwdt6WcgNFM4rDEpncwLQlz33
width="300"
height="650"
name="box"
style="display: none; border-radius: 8px; border: none; z-index:100000;"
></iframe>
<div
id="btn"fix chatbot mobile
onclick="handleToggle()"
style="
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background-color: #0a65ff;
margin: 10px;
cursor: pointer;
z-index:100000;
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#FFFFFF"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M15 4v7H5.17l-.59.59-.58.58V4h11m1-2H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm5 4h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1z"
/>
</svg>
</div>
</div>
<script>
window.onload = getData;
const iframe = document.getElementById("box");
const btn = document.getElementById("btn");
function handleToggle() {
iframe.style.display === "none"
? (iframe.style.display = "block")
: (iframe.style.display = "none");
}
function getData() {
var eventMethod = window.addEventListener
? "addEventListener"
: "attachEvent";
var eventer = window[eventMethod];
var messageEvent = eventMethod === "attachEvent" ? "onmessage" : "message";
eventer(messageEvent, (e) => {
const { complete } = e.data;
if (complete) {
iframe.style.display = "none";
btn.style.display = "none";
}
});
}
</script>
</body>
</html>