-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
65 lines (61 loc) · 1.76 KB
/
Copy pathexperience.html
File metadata and controls
65 lines (61 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Experience</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="container">
<div class="header">
<h3>
<a href="index.html">About</a>
  <a href="skills.html">Skills</a>  
<a href="education.html">Education</a>  
<a class="active">Experience</a>  
<a href="interests.html">Interests</a>
</h3>
</div>
<div class="flex-container">
<div class="pic-and-name">
<div class="pic">
<img style="height: 200px" src="2019.jpg" alt="Picture of Me" />
</div>
<div class="name">
<h3>Mehrnaz Zafari</h3>
<p id="job">Student</p>
<p id="email">mehrnaz.zafari@ucalgary.ca</p>
</div>
</div>
<div class="table">
<h2>Experience</h2>
<table id="exT">
<thead>
<tr id="row1">
<td><strong>Student</strong></td>
<td>2021-Present</td>
</tr>
</thead>
<tbody>
<tr id="row2">
<td>University of Calgary</td>
<td>Calgary, AB</td>
</tr>
<tr>
<td><strong>Student</strong></td>
<td>2018-2020</td>
</tr>
<tr>
<td>Western Canada High School</td>
<td>Calgary, AB</td>
</tr>
</tbody>
</table>
<p>Download my full resume <a href="resume.txt" download>here</a></p>
</div>
</div>
<div class="footer">
<p>© Mehrnaz Zafari 2023</p>
</div>
</div>
</body>
</html>