-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
321 lines (318 loc) · 12.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ABayoumy</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/fontawesome.min.css" />
</head>
<!-- https://www.youtube.com/watch?v=viF2sRr0Amk&t=1265s -->
<body class="bg-light">
<!-- NavBar Start -->
<nav class="navbar navbar-light fixed-top bg-light shadow-sm">
<div class="container-lg">
<a class="navbar-brand text-danger fw-bold fs-4" href="#"
>Ahmed_Bayoumy</a
>
<div class="dropdown">
<button
class="btn btn-secondary btn-danger px-3"
type="button"
id="dropdownMenuButton1"
data-bs-toggle="dropdown"
aria-expanded="false"
>
<i class="fas fa-bars"></i>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item" href="#home">Home</a></li>
<li><a class="dropdown-item" href="#about">About</a></li>
<li><a class="dropdown-item" href="#work">Experiences</a></li>
</ul>
</div>
</div>
</nav>
<!-- NavBar End -->
<!-- Home Start -->
<section class="home py-4" id="home">
<div class="container-lg">
<div class="row align-items-center align-content-center">
<div class="col-md-6">
<div class="home-img test-center">
<img
src="img/profile.jpg"
class="rounded-circle img-responsive"
alt="profile img"
/>
</div>
</div>
<div class="col-md-6 order-md-first">
<div class="home-text">
<p class="text-muted mb-1">👋 Hello I'm</p>
<h1 class="text-danger test-uppercase fs-1 fw-bold">
Active Directory
</h1>
<h1 class="text-black test-uppercase fs-3">Support Engineer</h1>
<p class="mt-1">
Experienced System Administrator with 20+ Years Technical
experience. Skills include servers, network, analytical thinking
and creative problem solving. focused on Windows servers &
Active Directory.
</p>
<a href="#work" class="btn btn-danger px-3 mt-3"
>Work Experiences</a
>
</div>
</div>
</div>
</div>
</section>
<!-- Home End -->
<!-- About start -->
<section class="about py-2" id="about">
<div class="container-lg py-2">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center">
<h2 class="fw-bold mb-3">About Me</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="about-text">
<h3 class="fs-4 mb-3">Windows & Network Administrator</h3>
<p class="text-muted text-justify">
Experience in Windows Servers, Network Devices & Team lead.
Analytical thinking and creative problem solving. focused on
Windows Servers & Active Directory .
</p>
</div>
<div class="row text-center text-uppercase my-3">
<div class="col-sm-4">
<div class="fact-item">
<h4>20<br />Years</h4>
<p>in IT</p>
</div>
</div>
<div class="col-sm-4">
<div class="fact-item">
<h4>Active Directory</h4>
<p>since 2003</p>
</div>
</div>
<div class="col-sm-4">
<div class="fact-item">
<h4>Microsoft Certified</h4>
<p>IT Professional 2008</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 d-flex align-items-center">
<!-- <a href="#" class="btn px-3 btn-danger me-5">Download CV</a> -->
<div class="social-links">
<a
href="https://www.linkedin.com/in/abayoumy"
class="text-dark me-2"
><i class="fab fa-linkedin-in"></i
></a>
<a
href="https://github.com/Aabayoumy/Aabayoumy"
class="text-dark me-2"
><i class="fab fa-github"></i
></a>
<a href="vcard.vcf" class="text-dark me-2"
><i class="fa fa-phone-square"> +2 010 9963 1331 </i></a
>
<a href="mailto: [email protected]" class="text-dark me-2"
><i class="fa fa-envelope"> [email protected] </i></a
>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="skill-item mb-2">
<h3 class="fs-6">Active Directory</h3>
<div class="progress" style="height: 5px">
<div
class="progress-bar bg-danger"
role="progressbar"
style="width: 85%"
aria-valuenow="85"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="skill-item mb-2">
<h3 class="fs-6">Windows Server</h3>
<div class="progress" style="height: 5px">
<div
class="progress-bar bg-danger"
role="progressbar"
style="width: 70%"
aria-valuenow="70"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="skill-item mb-2">
<h3 class="fs-6">PowerShell Script</h3>
<div class="progress" style="height: 5px">
<div
class="progress-bar bg-danger"
role="progressbar"
style="width: 60%"
aria-valuenow="60"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="skill-item mb-2">
<h3 class="fs-6">Exchange Server</h3>
<div class="progress" style="height: 5px">
<div
class="progress-bar bg-danger"
role="progressbar"
style="width: 50%"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="skill-item mb-2">
<h3 class="fs-6">FortiGate</h3>
<div class="progress" style="height: 5px">
<div
class="progress-bar bg-danger"
role="progressbar"
style="width: 65%"
aria-valuenow="65"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="skill-item mb-2">
<h3 class="fs-6">Linux</h3>
<div class="progress" style="height: 5px">
<div
class="progress-bar bg-danger"
role="progressbar"
style="width: 40%"
aria-valuenow="40"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Abut End -->
<!-- work Start -->
<section class="work py-2" id="work">
<div class="container-lg py-2">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center">
<h2 class="fw-bold mb-2">Work Experience</h2>
</div>
</div>
</div>
<div class="row align-items-center align-content-center mb-3">
<div class="work-item mb-2">
<p class="text-muted text-justify mb-0">July 2021 - Now</p>
<h4 class="mb-0">Microsoft</h4>
<p class="text-justify mb-0">Active Directory Support Engineer.</p>
</div>
</div>
<div class="row align-items-center align-content-center mb-3">
<div class="work-item mb-2">
<p class="text-muted text-justify mb-0">November 2010 - May 2021</p>
<h4 class="mb-0">IFFCO KSA (PureFood)</h4>
<h6>IT Associate Manager.</h6>
<li>
System Administrator: Windows Server, Active Directory & Hyper-V.
</li>
<li>
Network Administrator: Network connection & devices in 11 Sites.
</li>
<li>Manage IT Assets, licenses and Purchases.</li>
<li>
Support Sales team HandHeald devices and integration with Orecal.
</li>
</div>
</div>
<div class="row align-items-center align-content-center mb-3">
<div class="work-item mb-2">
<p class="text-muted text-justify mb-0">
November 2008 - November 2010
</p>
<h4 class="mb-0">IBM Contractor - Computerized Passport Project</h4>
<h6>System Administrator (Team Leader).</h6>
<li>Manage Windows Server, Active Directory, Terminal Servers.</li>
<li>
Secure Servers & Workstations with Symantec EndPoint Management
(update using offline sites).
</li>
<li>Manage IT Assets, licenses and Purchases.</li>
<li>Manage Backup with TSM.</li>
</div>
</div>
<div class="row align-items-center align-content-center mb-3">
<div class="work-item mb-2">
<p class="text-muted text-justify mb-0">2008 - 2010</p>
<h4 class="mb-0">Microsoft instructor (Part Time)</h4>
<h6>Teach MCSE2003 & Exchange courses.</h6>
</div>
</div>
<div class="row align-items-center align-content-center mb-3">
<div class="work-item mb-2">
<p class="text-muted text-justify mb-0">
February 2006 - November 2008
</p>
<h4 class="mb-0">IFFCO Egypt</h4>
<h6>IT Support</h6>
<li>Users Support (PC - Laptop).</li>
<li>From 6-2007: support servers & network.</li>
<li>Manage IT Assets, licenses and Purchases.</li>
</div>
</div>
<div class="row align-items-center align-content-center mb-3">
<div class="work-item mb-2">
<p class="text-muted text-justify mb-0">
June 2003 - February 2006
</p>
<h4 class="mb-0">SIMA</h4>
<h6>HelpDesk</h6>
<li>Users Support (PC,Laptop & Printers).</li>
<li>
Software Developer VB.Net (Windows Application – Web Application).
</li>
<li>SQL Database Administrator.</li>
</div>
</div>
<div class="row align-items-center align-content-center mb-3">
<div class="work-item mb-2">
<p class="text-muted text-justify mb-0">
February 2002 - November 2003
</p>
<h4 class="mb-0">Elkateb Computers</h4>
<h6>HelpDesk</h6>
<li>Users Support (PC,Laptop & Printers).</li>
</div>
</div>
</div>
</section>
<!-- work End -->
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>