-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
139 lines (126 loc) · 5.17 KB
/
resume.html
File metadata and controls
139 lines (126 loc) · 5.17 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My resume</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<a class="header-home" href="#">Mitra</a>
<nav>
<ul>
<li> <a href="../index.html">Home</a> </li>
<li> <a href="projects.html">Projects</a> </li>
<li> <a href="../Q2/contact.html">Contact</a> </li>
<li> <a href="../Q2/about.html">About me</a> </li>
</ul>
<a href="#" class="header-projects">Projects</a>
</nav>
</header>
<div class="wrapper">
<main>
<h2>My Resume</h2>
<div class="resume">
<div class="info">
<p>MITRA KAZEMZADEH<br>
Email:mitra.kazemzadeh@uleth.ca<br>
Address: 305-257 Rocky Mtn Blvd W <br>Lethbridge, AB Canada, T1K 6R2<br>
Cell Phone: (250) 8848877</p>
</div>
<div class="personal">
<h3>Personal Profile</h3>
<p>3 years of experience focusing on help desk and maintenance team coordination.
Hands-on work experience in Engineering Pre/Post Sales Consultation.
Proven leadership and decision-making skills as well as ability to learn fast and follow directions.
Able to develop innovative solutions to difficult problems, generally on the spot</p>
</div>
<h3>education:</h3>
<div class="education">
<div class="university-time">
<h4 class="time">Sep 2016<br>ungoing</h4>
</div>
<div class="university-info">
<p>B.Sc Computer Science-Fourth year-GPA:3.62/4<br>
University of Lethbridge, AB, Canada</p>
</div>
<div class="university-time">
<h4 class="time">Sep 2003<br>Aug 2007</h4>
</div>
<div class="university-info">
<p>B.Eng. Computer Hardware Engineering <br> University of
Allameh Mohaddes Noori, Noor, Iran.</p>
</div>
</div>
<div class="certification">
<h3>Relevant certifications</h3>
<p>Mar 2015 Cisco Certified Network Associate, Victoria, BC, Canada.<br>
Jun 2008 Network Management, Amir Kabir University, Tehran, Iran.</p>
</div>
<h3>Work experience:</h3>
<div class="work">
<div class="work-time">
<p class="time">May 2009-<br>Aug 2009</p>
</div>
<div class="work-info">
<h4>Sales Engineer </h4>
<h5>Tavana company- Tehran Iran </h5>
</div>
<div class="work-time">
<p class="time">Sep 2009-<br>Aug 2010</p>
</div>
<div class="work-info">
<h4>Helpdesk</h4>
<h5>Icon company, Tehran,Iran </h5>
<h6>We were working on a maintenance project for a telecommunication company to maintain the antennas.<br>
as a helpdesk I used to monitor the network and if there was some down sites,<br>
I needed to coordinate some of our professional team members to go to the site and fix the problem and give feedback to our customer company.</h6>
</div>
<div class="work-time">
<p class="time">Sep 2010-<br>Jun 2012</p>
</div>
<div class="work-info">
<h4>Data centre operator</h4>
<h5>Aryahamrah samaneh company,Tehran iran</h5>
<h6>As a Data centre operator I needed to monitor the datacentre servers,<br>
so if any of them was in a critical situation I had to inform the related team to take care the issue.<br>
we also had to inspect the datacentre environment to check the air conditioners and other components every day.
I used to work in night shifts (7pm – 7am) once a week too. </h6>
</div>
<div class="work-time">
<p class="time">Nov2016-<br>Ungoing</p>
</div>
<div class="work-info">
<h4>Testing centre operator </h4>
<h5>University of Lethbridge </h5>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="footer-pages">
<ul>
<li> <a href="#">Home</a> </li>
<li> <a href="#">Contact Me</a> </li>
<li> <a href="#">About me</a> </li>
<li> <a href="#">Projects</a></li>
<li> <a href="#">Resume</a></li>
</ul>
<div>
<div class="footer-projects">
<ul >
<li> <a href="#">Latest Projects:</a></li>
<li> <a href="#">Dice Game</a> </li>
<li> <a href="#">Finance Tech</a></li>
<li> <a href="#">Dealership Database</a></li>
<li> <a href="#">Chating with pythan</a> </li>
</ul>
</div>
<div class="footer-icons">
<a href="https://ca.linkedin.com/in/mitra-kazemzadeh-a74191128"> <img class="icons" src="../icons/linkdin.png" alt=""> </a><br>
<a href="https://www.facebook.com/mitra.ka.12"> <img class="icons" src="../icons/facebook.png" alt=""> </a>
</div>
</footer>
</div>
</body>
</html>