-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
187 lines (163 loc) · 3.47 KB
/
Copy pathindex.html
File metadata and controls
187 lines (163 loc) · 3.47 KB
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
<!doctype html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV | Abdul Mujib - IT & Network Engineer</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary:#0f172a;
--secondary:#2563eb;
--bg:#f8fafc;
--card:#ffffff;
--text:#334155;
--muted:#64748b;
--border:#e2e8f0;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.7;
}
.container {
max-width: 900px;
margin: auto;
padding: 40px 20px;
}
.card {
background: var(--card);
border-radius: 14px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
header {
text-align: center;
border-bottom: 1px solid var(--border);
padding-bottom: 25px;
margin-bottom: 30px;
}
header h1 {
margin: 0;
font-size: 34px;
color: var(--primary);
}
header p {
margin-top: 8px;
color: var(--muted);
}
section {
margin-bottom: 30px;
}
h2 {
font-size: 20px;
margin-bottom: 12px;
color: var(--primary);
border-bottom: 2px solid var(--secondary);
display: inline-block;
padding-bottom: 4px;
}
ul {
padding-left: 18px;
}
li {
margin-bottom: 8px;
}
.skills span {
display: inline-block;
background: #e0e7ff;
color: #1e3a8a;
padding: 6px 12px;
border-radius: 20px;
font-size: 14px;
margin: 5px;
}
footer {
text-align: center;
font-size: 14px;
color: var(--muted);
margin-top: 40px;
}
a {
color: var(--secondary);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<header>
<h1>Abdul Mujib</h1>
<p>IT • Network Engineer • Digital Enthusiast</p>
<p>
📧 me.abmujib@gmail.com |
🌐 <a href="https://github.com/abmujib" target="_blank">github.com/abmujib</a> |
🌐 <a href="https://facebook.com/fb.abmujib" target="_blank">facebook.com/fb.abmujib</a>
</p>
</header>
<section>
<h2>Profil Singkat</h2>
<p>
Profesional di bidang <strong>IT, Networking, dan Digital</strong> dengan pengalaman
mengelola infrastruktur jaringan, server, dan layanan internet.
Terbiasa bekerja sebagai Network Engineer / NOC dengan fokus stabilitas,
keamanan, dan efisiensi sistem.
</p>
</section>
<section>
<h2>Keahlian Utama</h2>
<div class="skills">
<span>MikroTik RouterOS</span>
<span>Routing & Switching</span>
<span>PPPoE & Hotspot</span>
<span>Firewall & NAT</span>
<span>VLAN & QoS</span>
<span>Linux Server</span>
<span>Monitoring Network</span>
<span>Fiber Optic</span>
<span>Digital Service</span>
</div>
</section>
<section>
<h2>Pengalaman</h2>
<ul>
<li><strong>Network Engineer / NOC</strong> – ISP / WISP</li>
<li>Monitoring jaringan dan uptime layanan pelanggan</li>
<li>Konfigurasi MikroTik (PPPoE, Hotspot, Failover, Load Balance)</li>
<li>Troubleshooting jaringan FO dan wireless</li>
<li>Manajemen bandwidth dan optimasi trafik</li>
</ul>
</section>
<section>
<h2>Pendidikan & Pembelajaran</h2>
<ul>
<li>Belajar mandiri Networking & Server</li>
<li>Eksplorasi teknologi IT & Digital</li>
<li>Continuous learning & problem solving</li>
</ul>
</section>
<section>
<h2>Minat</h2>
<ul>
<li>Network Infrastructure</li>
<li>Digital Technology</li>
<li>Automation & Monitoring</li>
<li>Internet Services</li>
</ul>
</section>
<footer>
© 2025 Abdul Mujib
</footer>
</div>
</div>
</body>
</html>