-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
98 lines (93 loc) · 3.12 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CV Using HTML & CSS</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="style_cv1.css">
</head>
<body>
<div id="page">
<div class="photo-and-name">
<img src="nabil.jpg" class="photo" alt="Profile Picture">
<div class="contact-info-box">
<h1 class="name">Nabil Ghazouani</h1>
<br>
<h3 class="job-title">IT Manager</h3>
<p class="contact-details">Phone: 55 686 687 - Email: Gh.nabil29@gmail.com</p>
</div>
</div>
<div id="objective">
<h3>Objective</h3>
<p>
To take a challenging and managerial role in the field of Computer programming and implement the expertise and experience gained in this field to develop complex project with efficiency and quality.
</p>
</div>
<div id="education">
<h3>Education</h3>
<table>
<tr class="school-1">
<td rowspan="2">2016-2019</td>
<td><b>School-1</b>: Menzah 9</td>
</tr>
<tr class="school-2">
<td><b>School-2</b>: XYZ School </td>
</tr>
<tr class="school-1">
<td rowspan="2">2012 - 2014</td>
<td><b>ACCESS</b>: English Micro Scholarship Program by US Consolate</td>
</tr>
<tr class="school-2">
<td><b>The Professional's Academy</b>: Web Designing (HTML, CSS, JS, Bootstrap)</td>
</tr>
<tr>
<td style="width: 120px; color: gray;">2015 - 2017</td>
<td><b>Intermediate</b>: Board of Intermediate Karachi - Private</td>
</tr>
</table>
</div>
<div id="work">
<h3>Experience</h3>
<table>
<tr class="work-1">
<td>2014 - 2015</td>
<td><b>ABC Corp</b>: As an IT Manager and Call Service Representative</td>
</tr>
<tr class="work-2">
<td>2015 - Present</td>
<td><b>Reliable Punching</b>: More than 2 years' experience as an IT Manager and Customer Service Representative</td>
</tr>
</table>
</div>
<div id="bio-data">
<h3>Bio-Data</h3>
<table>
<tr>
<td>F'Name:</td>
<td><b>Naseem Akhter</b></td>
</tr>
<tr>
<td>Date of Birth:</td>
<td><b>25<sup>th</sup> November 1996</b></td>
</tr>
<tr>
<td>CNIC:</td>
<td><b>42401-XXXXXXX-7</b></td>
</tr>
<tr>
<td>Religion:</td>
<td><b>Islam</b></td>
</tr>
<tr>
<td>Nationality:</td>
<td><b>Pakistani</b></td>
</tr>
<tr>
<td>Marital Status:</td>
<td><b>Unmarried</b></td>
</tr>
</table>
</div>
</div>
</body>
</html>