-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·80 lines (80 loc) · 2.75 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
<!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">
<title>Document</title>
<link rel="stylesheet" href="assets/style.css">
<script src="assets/style.js" defer></script>
</head>
<body>
<header>
<div class="top">
<h1>test resume</h1>
</div>
</header>
<nav>
<a href="#">Work Experience</a>
<a href="#">Education</a>
<a href="#">Technical Skill</a>
<a href="#">Project</a>
<a href="#">Test</a>
</nav>
<main>
<aside>
<img src="assets/photo.jpeg" alt="Foto Profil">
<h1>Rafi Ahmadinejad Al Farisi</h1>
<h2 class="title">Beginner Web Developer</h2>
<div class="sosmed">
<a href="https://wa.me/+6285161250608" target="_blank">
WhatsApp
<p class="value">+62 851-6125-0608</p>
</a>
<a href="mailto:[email protected]" target="_blank">
Email
<p class="value">[email protected]</p>
</a>
<a href="https://github.com/RfadnjdExt" target="_blank">
Github
<p class="value">RfadnjdExt</p>
</a>
<a href="https://www.dicoding.com/users/rfadnjdext" target="_blank">
Dicoding
<p class="value">rfadnjdext</p>
</a>
</div>
</aside>
<div id="content">
<article id="experience">
<h2>Work Experience</h2>
<div class="container">
<h4>PT BIE MULTI KREASI</h4>
<h5>Web Developer (Internship)</h5>
<h6>September 2022 - December 2022</h6>
</div>
</article>
<article id="education">
<h2>Education</h2>
<div class="container">
<h4>SMKN 1 TARUMAJAYA</h4>
<h6>2021-2023</h6>
</div>
<div class="container">
<h4>SMPN 2 TARUMAJAYA</h4>
<h6>2018-2021</h6>
</div>
<div class="container">
<h4>SDN SETIA ASIH 03</h4>
<h6>2012-2018</h6>
</div>
<div class="container">
<h4>TK ISLAM AL JIHAD</h4>
<h6>2011-2012</h6>
</div>
</article>
</div>
</main>
<footer></footer>
</body>
</html>