-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (74 loc) · 3.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
<!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" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Home</title>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<!-- Navbar -->
<nav>
<div class="container">
<div class="nav-left">
<ul class="nav-menu">
<li>
<a href="index.html" style="display: flex; align-items: center">
<img src="assets/images/Dumbways.png" alt="" style="width: 32px" />
</a>
</li>
<li><a href="index.html" style="font-weight: bold">Home</a></li>
<li><a href="https://github.com/opvinz?tab=repositories">My Project</a></li>
</ul>
</div>
<div class="nav-right">
<a href="contact_form.html">Contact Me</a>
</div>
</div>
</nav>
<!-- About -->
<section id="about">
<div class="container">
<div class="left">
<section class="profile-desc">
<h1>Hi Welcome to my hut</h1>
<p>
My name is Kevin Pratama. I have finished my Bachelor Program at Atmajaya University in 2019 with areas of expertise, including Quality Control, Logistic, Werehouse, Management, Business also Master Program at Pelita Harapan University in 2021 with areas of expertise, including Business, Management, Finance, Marketing, and Investment.
I am good in communication and time management, familiar with SPSS and Microsoft Office Programs. I also have an interest in programming and now i am trying to pursue this area.On top of that, I also adaptive in any situation, problem solver and open minded.
You can reach me through my email at [email protected] or in my Social Media.
</p>
</section>
<p>
<section class="buttons">
<a href="https://github.com/opvinz?tab=repositories" target="_blank" class="btn-contact">Contact</a>
<a href="https://docs.google.com/document/d/1_u5wI1gFhNqC4nGL5O0_QaqeutKL-Kaw/edit?usp=share_link&ouid=110486668762339186558&rtpof=true&sd=true" style="color: #000; text-decoration: none; background-color: transparent; border: none; font-size: 16px" target="_blank" class="btn-downcv"
>Download CV <span class="down-icon"><i class="fa-solid fa-download"></i></span
></a>
</section>
</p>
<section class="socials">
<a href="https://www.linkedin.com/in/opvinz/" target="_blank"><i class="fa-brands fa-lg fa-linkedin-in"></i></a>
<a href="https://www.instagram.com/opvinz/" target="_blank"><i class="fa-brands fa-lg fa-instagram"></i></a>
<a href="https://www.facebook.com/OPVINZ/"target="_blank"><i class="fa-brands fa-lg fa-facebook-f"></i></a>
<a href="https://www.twitter.com/ophium95/"target="_blank"><i class="fa-brands fa-lg fa-twitter"></i></a>
</section>
</div>
<div class="right">
<section class="profile-card">
<img src="./assets/images/kevin.jpg" alt="" />
<h3>Kevin Pratama</h3>
<p>Fullstack Developer</p>
</section>
</div>
</div>
</section>
</body>
</html>