-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (110 loc) · 4.95 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curriculum Vitae</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<script src="https://kit.fontawesome.com/533b9c4f79.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" charset="utf-8"></script>
</head>
<body>
<input type="checkbox" id="check">
<!-- header start -->
<header>
<label for="check">
<i class="fas fa-bars" id="sidebar_btn"></i>
</label>
<div class="left_area">
<h3>Curriculum Vitae</h3>
</div>
<!-- <div class="right_area">
<a href="#" class="logout_btn">Logout</a>
</div> -->
</header>
<!-- header end -->
<!-- mobile navigation bar start -->
<div class="mobile_nav">
<div class="nav_bar">
<img src="img/profile.jpg" class="mobile_profile_image" alt="">
<i class="fa fa-bars nav_btn"></i>
</div>
<div class="mobile_nav_items">
<a href="index.html"><i class="fas fa-info-circle"></i><span>About</span></a>
<a href="education.html"><i class="fas fa-university"></i><span>Education</span></a>
<a href="work.html"><i class="fas fa-briefcase"></i><span>Work Experiences</span></a>
<a href="organization.html"><i class="fas fa-sitemap"></i><span>Organization</span></a>
<a href="skills.html"><i class="fas fa-cogs"></i><span>Skills</span></a>
</div>
</div>
<!-- mobile navigation bar end -->
<!-- sidebar start -->
<div class="sidebar">
<div class="profile_info">
<img src="img/profile.jpg" class="profile_image" alt="">
</div>
<a href="index.html"><i class="fas fa-info-circle"></i><span>About</span></a>
<a href="education.html"><i class="fas fa-university"></i><span>Education</span></a>
<a href="work.html"><i class="fas fa-briefcase"></i><span>Work Experiences</span></a>
<a href="organization.html"><i class="fas fa-sitemap"></i><span>Organization</span></a>
<a href="skills.html"><i class="fas fa-cogs"></i><span>Skills</span></a>
</div>
<!-- sidebar end -->
<div class="content">
<div class="card">
<table>
<tr>
<td>Name</td>
<td>:</td>
<td>Arum Permata Sari</td>
</tr>
<tr>
<td>Age</td>
<td>:</td>
<td>23 years old</td>
</tr>
<tr>
<td>Phone number</td>
<td>:</td>
<td>+6285729092445</td>
</tr>
<tr>
<td>Email</td>
<td>:</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Domicile</td>
<td>:</td>
<td>Cikarang, Bekasi, Jawa Barat</td>
</tr>
<tr>
<td>Interests</td>
<td>:</td>
<td>Programming, administration, marketing</td>
</tr>
<tr>
<td>Social media</td>
<td>:</td>
<td>
<a href="https://api.whatsapp.com/send/?phone=6285729092445&text&app_absent=0" target="_blank" title="WhatsApp"><i class="fab fa-whatsapp"></i></a>
<a href="https://www.linkedin.com/in/arumxps/" target="_blank" title="Linked-in"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/arumxps" target="_blank" title="Github"><i class="fab fa-github"></i></a>
<a href="http://storyofrum.blogspot.com/" target="_blank" title="Blog"><i class="fab fa-blogger"></i></a>
<a href="https://twitter.com/arumxps" target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://instagram.com/arumxps" target="_blank" title="Instagram"><i class="fab fa-instagram"></i></a>
</td>
</tr>
</table>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('.nav_btn').click(function(){
$('.mobile_nav_items').toggleClass('active');
});
});
</script>
</body>
</html>