-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
346 lines (291 loc) · 15.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--============== BOX ICONS ==============-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<!--============== CSS ==============-->
<link rel="stylesheet" href="assets/css/style.css">
<title>Tugas Akhir CV PWD</title>
</head>
<body>
<!--============== HEADER ==============-->
<header class="l-header" id="header">
<nav class="nav bd-container">
<a href="#" class="nav__logo">Neubri</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link active-link">
<i class='bx bx-home nav__icon'></i>Home
</a>
</li>
<li class="nav__item">
<a href="#profile" class="nav__link">
<i class='bx bx-user nav__icon' ></i>Profile
</a>
</li>
<li class="nav__item">
<a href="#education" class="nav__link">
<i class='bx bx-book nav__icon' ></i>Education
</a>
</li>
<li class="nav__item">
<a href="#skills" class="nav__link">
<i class='bx bx-receipt nav__icon' ></i>Skills
</a>
</li>
<li class="nav__item">
<a href="#experience" class="nav__link">
<i class='bx bx-briefcase nav__icon' ></i>Experience
</a>
</li>
<li class="nav__item">
<a href="#certificates" class="nav__link">
<i class='bx bx-award nav__icon' ></i>Certificates
</a>
</li>
<li class="nav__item">
<a href="#references" class="nav__link">
<i class='bx bx-link-external nav__icon' ></i>References
</a>
</li>
</ul>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-grid-alt' ></i>
</div>
</nav>
</header>
<main class="l-main bd-container">
<!--============== All elements within this div, is generated in PDF ==============-->
<div class="resume" id="area-cv">
<div class="resume__left">
<!--============== HOME ==============-->
<section class="home" id="home">
<div class="home__container section bd-grid">
<div class="home__data bd-grid">
<img src="assets/img/profil.jpg" alt="" class="home__img">
<h1 class="home__title">NEUBRI <b>HIDAYAH</b></h1>
<h3 class="home__profession">Photographer</h3>
<!-- Button to download your CV saved in the pdf folder -->
<div>
<a download="" href="assets/pdf/ResumeCv.pdf" class="home__button-movil">Download</a>
</div>
</div>
<div class="home__address bd-grid">
<span class="home__information">
<i class='bx bx-map home__icon'></i> Ciracas Jakarta Timur - Indonesia
</span>
<span class="home__information">
<i class='bx bx-envelope home__icon' ></i> neubri.h@gmail.com
</span>
<span class="home__information">
<i class='bx bx-phone home__icon' ></i> 0851-666-666
</span>
</div>
</div>
<!-- Theme change button -->
<i class='bx bx-moon change-theme' title="Theme" id="theme-button"></i>
<!-- Button to generate and download the pdf -->
<i class='bx bx-download generate-pdf' title="Generate PDF" id="resume-button"></i>
</section>
<!--============== PROFILE ==============-->
<section class="social section">
<h2 class="section-title">SOCIAL</h2>
<div class="social__container bd-grid">
<a href="https://www.linkedin.com/" target="_blank" class="social__link">
<i class='bx bxl-linkedin-square social__icon'></i> @neubrii
<a href="https://www.facebook.com/" target="_blank" class="social__link">
<i class='bx bxl-facebook social__icon' ></i> @neubrii
<a href="https://www.instagram.com/" target="_blank" class="social__link">
<i class='bx bxl-instagram social__icon' ></i> @neubrii
</a>
</div>
</section>
<!--============== PROFILE ==============-->
<section class="profile section" id="profile">
<h2 class="section-title">Profile</h2>
<p class="profile__description">I am a freelance photographer specializing in capturing beautiful moments. I offer services for various types of photography and work with clients to deliver stunning results. I can help you preserve special memories through photography.</p>
</section>
<!--============== EDUCATION ==============-->
<section class="education section" id="education">
<h2 class="section-title">Education</h2>
<div class="education__container bd-grid">
<div class="education__content">
<div class="education__time">
<span class="education__rounder"></span>
<span class="education__line"></span>
</div>
<div class="education__data bd-grid">
<h3 class="education__title">ELEMENTARY SCHOOL</h3>
<span class="education__studies">SDN 08 PAGI</span>
<span class="education__year">2007 - 2013</span>
</div>
</div>
<div class="education__content">
<div class="education__time">
<span class="education__rounder"></span>
<span class="education__line"></span>
</div>
<div class="education__data bd-grid">
<h3 class="education__title">JUNIOR HIGH SCHOOL</h3>
<span class="education__studies">SMPN 208 JAKARTA</span>
<span class="education__year">2013 - 2016</span>
</div>
</div>
<div class="education__content">
<div class="education__time">
<span class="education__rounder"></span>
<span class="education__line"></span>
</div>
<div class="education__data bd-grid">
<h3 class="education__title">SENIOR HIGH SCHOOL</h3>
<span class="education__studies">SMA WIJAYA KUSUMA</span>
<span class="education__year">2016 - 2019</span>
</div>
</div>
</div>
</section>
<!--============== SKILLS ==============-->
<section class="skills section" id="skills">
<h2 class="section-title">Skills</h2>
<div class="skills__content bd-grid">
<ul class="skills__data">
<li class="skills__name">
<span class="skills__circle"></span> Adobe Premier Pro
</li>
<li class="skills__name">
<span class="skills__circle"></span> Adobe After Effect
</li>
<li class="skills__name">
<span class="skills__circle"></span> Adobe Photoshop
</li>
<li class="skills__name">
<span class="skills__circle"></span> Adobe Lightroom
</li>
</ul>
<ul class="skills__data">
<li class="skills__name">
<span class="skills__circle"></span> Ms.Word
</li>
<li class="skills__name">
<span class="skills__circle"></span> Ms.Excel
</li>
</ul>
</div>
</section>
</div>
<div class="resume__right">
<!--============== EXPERIENCE ==============-->
<section class="experience section" id="experience">
<h2 class="section-title">Experience</h2>
<div class="experience__container bd-grid">
<div class="experience__content">
<div class="experience__time">
<span class="experience__rounder"></span>
<span class="experience__line"></span>
</div>
<div class="experience__data bd-grid">
<h3 class="experience__title">PT.ANDAL GLOBAL SOLUSINDO</h3>
<span class="experience__company">From 2019 to 2020 | Account Executive Digital (AED)</span>
<p class="experience__description">As a freelance photographer, I have had the opportunity to work with a diverse range of clients on a variety of projects. My experience includes shooting product photography for e-commerce websites.</p>
</div>
</div>
<div class="experience__content">
<div class="experience__time">
<span class="experience__rounder"></span>
<!--span class="education__line"></span>-->
</div>
<div class="experience__data bd-grid">
<h3 class="experience__title">PT.NUSANTARA JAYA TEKNOLOGI</h3>
<span class="experience__company">From 2020 to 2022 | Account Executive Digital (AED)</span>
<p class="experience__description">As a freelance photographer, I have had the opportunity to work with a diverse range of clients on a variety of projects. My experience includes shooting product photography for e-commerce websites.</p>
</div>
</div>
</div>
</section>
<!--============== CERTIFICATES ==============-->
<section class="certificate section" id="certificates">
<h2 class="section-title">Certificates</h2>
<div class="certificates__content">
<h3 class="certificate__title">Landscape Photography Certificate (2016)</h3>
<p class="certificate__description">capturing stunning images of natural scenery,</p>
</div>
<div class="certificates__content">
<h3 class="certificate__title">Photojournalism Certificate (2019)</h3>
<p class="certificate__description">tell a story through photographs, capturing candid</p>
</div>
</section>
<!--============== REFRENCES ==============-->
<section class="references section" id="references">
<h2 class="section-title">References</h2>
<div class="references__container bd-grid">
<div class="references__content bd-grid">
<span class="references__subtitle">DOP</span>
<h3 class="references__title">Mr. Sabotage</h3>
<ul class="references__contact">
<li>Phone: 999-888-777</li>
<li>Email: mrsabotage@gmail.com</li>
</ul>
</div>
<div class="references__content bd-grid">
<span class="references__subtitle">Professional Photographer</span>
<h3 class="references__title">Mr. Saint Laurent</h3>
<ul class="references__contact">
<li>Phone: 999-888-777</li>
<li>Email: mrsaintlaurent@gmail.com</li>
</ul>
</div>
</div>
</section>
<!--============== LANGUANGES ==============-->
<section class="languages section">
<h2 class="section-title">Languages</h2>
<div class="languages_container">
<ul class="languages__content bd-grid">
<li class="languages__name">
<span class="languages__circle"></span> Indonesia
</li>
<li class="languages__name">
<span class="languages__circle"></span> English
</li>
</ul>
</div>
</section>
<!--============== INTERESTS ==============-->
<section class="interests section">
<h2 class="section-title">Interests</h2>
<div class="interests__container bd-grid">
<div class="interests__content">
<i class='bx bx-headphone interests__icon' ></i>
<span class="interests__name">Music</span>
</div>
<div class="interests__content">
<i class='bx bxs-plane-alt interests__icon' ></i>
<span class="interests__name">Travel</span>
</div>
<div class="interests__content">
<i class='bx bx-book interests__icon' ></i>
<span class="interests__name">Read</span>
</div>
<div class="interests__content">
<i class='bx bx-swim interests__icon' ></i>
<span class="interests__name">Swim</span>
</div>
</div>
</section>
</div>
</main>
<!--============== SCROLL TOP ==============-->
<a href="#" class="scrolltop" id="scroll-top">
<i class='bx bx-up-arrow-alt scrolltop__icon' ></i>
</a>
<!--============== HTML2PDF ==============-->
<script src="assets/js/html2pdf.bundle.min.js"></script>
<!--============== MAIN JS ==============-->
<script src="assets/js/main.js"></script>
</body>
</html>