This repository has been archived by the owner on Aug 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
639 lines (439 loc) · 17.5 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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>DaniHRE</title>
<meta name="description" content="A Simple Portfolio based on pure HTML, CSS and JS.">
<meta name="author" content="DaniHRE">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body id="top">
<!-- header
================================================== -->
<header>
<div class="row">
<div class="top-bar">
<a class="menu-toggle" href="#"><span>Menu</span></a>
<div class="logo">
<a href="index.html">KARDS</a>
</div>
<nav id="main-nav-wrap">
<ul class="main-navigation">
<li class="current"><a class="smoothscroll" href="#intro" title="">Home</a></li>
<li><a class="smoothscroll" href="#about" title="">About</a></li>
<li><a class="smoothscroll" href="#resume" title="">Resume</a></li>
<!-- DISABLE WHILE NOT CREATE A PORTFOLIO SECTION -->
<!-- <li><a class="smoothscroll" href="#portfolio" title="">Portfolio</a></li> -->
<li><a class="smoothscroll" href="#services" title="">Services</a></li>
<li><a class="smoothscroll" href="#contact" title="">Contact</a></li>
</ul>
</nav>
</div> <!-- /top-bar -->
</div> <!-- /row -->
</header> <!-- /header -->
<!-- intro section
================================================== -->
<section id="intro">
<div class="intro-overlay"></div>
<div class="intro-content">
<div class="row">
<div class="col-twelve">
<h5>Hello, World.</h5>
<h1>I'm Daniel Henrique.</h1>
<p class="intro-position">
<span>Apprendice in BOSCH</span>
<span>Student of Programming</span>
</p>
<a class="button stroke smoothscroll" href="#about" title="">More About Me</a>
</div>
</div>
</div> <!-- /intro-content -->
<ul class="intro-social">
<li><a href="#"><i class="fa fa-github"></i></a></li>
<li><a href="#"><i class="fa-brands fa-whatsapp" id="whatsapp"></i></a></li>
<li><a href="#"><i class="fa fa-instagram" id="insta"></i></a></li>
<li><a href="#"><i class="fab fa-discord" id="insta"></i></a></li>
</ul> <!-- /intro-social -->
</section> <!-- /intro -->
<!-- about section
================================================== -->
<section id="about">
<div class="row section-intro">
<div class="col-twelve">
<h5>About</h5>
<h1>Let me introduce myself. 👨🏻🏫</h1>
<div class="intro-info">
<img src="images/github-profile-pic.jpeg" alt="Profile Picture">
<p class="lead">Soo... let's see little things about me... I was born in a city called Americana in the interior of São Paulo, small town, but with many opportunities for those who know how to take advantage of it.</p>
</div>
</div>
</div>
<div class="row about-content">
<div class="col-six tab-full">
<h3>Profile 📖</h3>
<p>I'm basically a student who is always trying to evolve within the programming scenario, every day looking for more knowledge and the realization of new projects.</p>
<ul class="info-list">
<li>
<strong>Fullname:</strong>
<span>Daniel Henrique Rodrigues Evaldo da Silva</span>
</li>
<li>
<strong>Birth Date:</strong>
<span>Mai 15, 2004</span>
</li>
<li>
<strong>Job:</strong>
<span>Student, Apprendice in SENAI/BOSCH Campinas.</span>
</li>
<li>
<strong>Website:</strong>
<span>www.github.com/danihre</span>
</li>
<li>
<strong>Email:</strong>
<span>henriqueevaldo@outlook.com</span>
</li>
</ul>
</div>
<div class="col-six tab-full">
<h3>Skills 📈</h3>
<p>I have skills with HTML, CSS, JS, Python and linux operating systems, among them, I've used Debian, Arch, Kali, Ubuntu, Manjaro, RaspOS, LibreELEC and a few more...</p>
<ul class="skill-bars">
<li>
<div class="progress percent80"><span>80%</span></div>
<strong><i class="fa-brands fa-html5"></i> HTML5</strong>
</li>
<li>
<div class="progress percent55"><span>55%</span></div>
<strong><i class="fa-brands fa-css3-alt"></i> CSS3</strong>
</li>
<li>
<div class="progress percent40"> <span>40%</span></div>
<strong><i class="fa-brands fa-js"></i> JavaScript</strong>
</li>
<li>
<div class="progress percent50"><span>50%</span></div>
<strong><i class="fa-brands fa-python"></i> Python</strong>
</li>
<li>
<div class="progress percent80"><span>80%</span></div>
<strong><i class="fa-brands fa-linux"></i> Linux OS</strong>
</li>
</ul>
</div>
</div>
<!-- DISABLED WHILE DOWNLOAD THE PDF-->
<!-- <div class="row button-section">
<div class="col-twelve">
<a href="#" title="Download CV" class="button button-primary">Download CV</a>
</div>
</div> -->
</section>
<section id="resume" class="grey-section">
<div class="row section-intro">
<div class="col-twelve">
<h5>Resume</h5>
<h1>More of my credentials.</h1>
<p class="lead">A description of my education over the years, listing some certifications by technical schools and regular education.</p>
</div>
</div>
<div class="row resume-timeline">
<div class="col-twelve resume-header">
<h2>Work Experience</h2>
</div>
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Apprendice of Development systems</h3>
<p>January 17 - Present</p>
</div>
<div class="timeline-content">
<h4>BOSCH Campinas</h4>
<p>Here at ETS, I learned a lot about technology, using programming tools, and programming itself, developing some projects and creating solutions.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row resume-timeline">
<div class="col-twelve resume-header">
<h2>Education</h2>
</div>
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Systems Development Technician</h3>
<p>January 2022 - Present</p>
</div>
<div class="timeline-content">
<h4>SENAI Roberto Mange</h4>
<p>Learning current concepts, which are on the rise in the programming market, using languages such as: React native, React Web, Python, JAVA among others.</p>
</div>
</div>
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Systems Development Technician</h3>
<p>February 2019 - December 2021</p>
</div>
<div class="timeline-content">
<h4>E.T.E.C. Polivalente de Americana</h4>
<p>I learned the basics of T.I., Database, Programming Logic, Systems Analysis and Web Development (HTML and CSS), basic Photoshop and low code programming for mobile devices.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
PUT MY PORTFOLIO PROJECT INFOS
-->
<!-- services Section
================================================== -->
<section id="services">
<div class="overlay"></div>
<div class="row section-intro">
<div class="col-twelve">
<h5>Services</h5>
<h1>What Can I Do For You?</h1>
<p class="lead">Want something that can be developed with my skills, go ahead, drop me an email and we'll talk.</p>
</div>
</div> <!-- /section-intro -->
<div class="row services-content">
<div id="owl-slider" class="owl-carousel services-list">
<div class="service">
<span class="icon"><i class="icon-earth"></i></span>
<div class="service-content">
<h3>Webdesign</h3>
<p class="desc">Creation of UI design, with modern concepts, aimed at the user minimalism and a pleasant user experience.
Web design can go much further than that, but overall your request is an order.
</p>
</div>
</div> <!-- /service -->
<div class="service">
<span class="icon"><i class="icon-window"></i></span>
<div class="service-content">
<h3>Web Development</h3>
<p class="desc">You need a website for your company, you want to expand your business with a real eye-catching but at the same time pleasant website.
A development focused on meeting the requirements and always made easy for the user.
</p>
</div>
</div>
<div class="service">
<span class="icon"><i class="icon-toggles"></i></span>
<div class="service-content">
<h3>UI/UX Design</h3>
<p class="desc">Development of visual prototypes, thinking from UX and UI design techniques, nothing really advanced, but always trying to please the user, as well as the defined UX.
</p>
</div>
</div> <!-- /service -->
<div class="service">
<span class="icon"><i class="icon-image"></i></span>
<div class="service-content">
<h3>Graphics Design</h3>
<p class="desc">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.
</p>
</div>
</div> <!-- /services-list -->
</div> <!-- /services-content -->
</section> <!-- /services -->
<!-- stats Section
================================================== -->
<section id="stats" class="count-up">
<div class="row">
<div class="col-twelve">
<div class="block-1-6 block-s-1-3 block-tab-1-2 block-mob-full stats-list" style="justify-content: center; align-items: center; display: flex;">
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-pencil-ruler"></i>
</div>
<h3 class="stat-count">
18
</h3>
<h5 class="stat-title">
Projects Completed
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-badge"></i>
</div>
<h3 class="stat-count">
5
</h3>
<h5 class="stat-title">
Certificates Received
</h5>
</div> <!-- /stat -->
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-cup"></i>
</div>
<h3 class="stat-count">
999
</h3>
<h5 class="stat-title">
I lost count of so many coffees.
</h5>
</div>
<div class="bgrid stat">
<div class="icon-part">
<i class="icon-clock"></i>
</div>
<h3 class="stat-count">
12
</h3>
<h5 class="stat-title">
Months studing.
</h5>
</div>
</div>
</div>
</div>
</section>
<!-- contact
================================================== -->
<section id="contact">
<div class="row section-intro">
<div class="col-twelve">
<h5>Contact</h5>
<h1>I'd Love To Hear From You. 😃</h1>
<p class="lead">Do you have feedback?, would you like to ask me something?, just chat?, send me an email.</p>
</div>
</div> <!-- /section-intro -->
<div class="row contact-form">
<div class="col-twelve">
<!-- COMMENT WHEN INTEGRATE JS PLUGIN TO SEND E-MAIL -->
<!-- form -->
<!--
<form name="contactForm" id="contactForm" method="post" action="">
<fieldset>
<div class="form-field">
<input name="contactName" type="text" id="contactName" placeholder="Name" value="" minlength="2" required="">
</div>
<div class="form-field">
<input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value="" required="">
</div>
<div class="form-field">
<input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="">
</div>
<div class="form-field">
<textarea name="contactMessage" id="contactMessage" placeholder="message" rows="10" cols="50" required=""></textarea>
</div>
<div class="form-field">
<button class="submitform">Submit</button>
<div id="submit-loader">
<div class="text-loader">Sending...</div>
<div class="s-loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
</fieldset>
</form>
-->
<!-- Form End -->
<!-- contact-warning -->
<div id="message-warning">
</div>
<!-- contact-success -->
<div id="message-success">
<i class="fa fa-check"></i>Your message was sent, thank you!<br>
</div>
</div> <!-- /col-twelve -->
</div> <!-- /contact-form -->
<div class="row contact-info">
<div class="col-four tab-full">
<div class="icon">
<i class="icon-pin"></i>
</div>
<h5>Where to find me</h5>
<p>
GitHub, DaniHRE<br>
Instagram, @dani_rod05<br>
</p>
</div>
<div class="col-four tab-full collapse">
<div class="icon">
<i class="icon-mail"></i>
</div>
<h5>Email Me At</h5>
<p><a href = "mailto: henriqueevaldo@outlook.com" style="color: #6E6E6E">
henriqueevaldo@outlook.com</a><br>
</p>
</div>
<div class="col-four tab-full">
<div class="icon">
<i class="icon-phone"></i>
</div>
<h5>Call Me At</h5>
<p>
<a href="https://discordapp.com/users/424187328051937292" target="_blank" style="color: #6E6E6E">
My discord clicking here
</a><br>
</p>
</div>
</div> <!-- /contact-info -->
</section> <!-- /contact -->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="col-six tab-full pull-right social">
<ul class="footer-social">
<li><a href="#"><i class="fa fa-github"></i></a></li>
<li><a href="#"><i class="fa-brands fa-whatsapp" id="whatsapp"></i></a></li>
<li><a href="#"><i class="fa fa-instagram" id="insta"></i></a></li>
<li><a href="#"><i class="fab fa-discord" id="insta"></i></a></li>
</ul>
</div>
<div class="col-six tab-full">
<div class="copyright">
<span>© Copyright DaniHRE 2022.</span>
<span>Design by <a href="http://www.github.com/danihre/" target="_blank">Daniel Henrique</a></span>
</div>
</div>
<div id="go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="fa fa-long-arrow-up"></i></a>
</div>
</div> <!-- /row -->
</footer>
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>