-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaziz.php
75 lines (58 loc) · 2.17 KB
/
aziz.php
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
<!doctype html>
<?php $thisPage="Aziz"; ?>
<?php include('includes/html-top.inc');?>
<body>
<div class="container"> <!--container to keep the content from the margins-->
<header>
<h1>Beijing — Assignment 03</h1>
<p class="subtitle">Professional Portfolio</p>
</header>
<?php include('includes/nav.inc');?>
<div class="box">
<div class="row justify-content-center">
<div class="col-3">
<h2>Zubair Aziz</h2>
</div>
</div>
<!--LAYOUT: it would be nice to keep these items in this order, since they're supposed to imitate a resume-->
<article>
<div class="row">
<div class="col">
<h3>Education</h3>
<ul>
<li>School: University of Rochester, anticipated graduation 2019</li>
<li>Majors: Economics, Computer Science</li>
<li>Minors: None</li>
</ul>
<div class="list2">
<h3>Skills</h3>
<ul>
<li>Experience working in a dev team</li>
<li>Optimizing webpages for better load speeds and search rankings</li>
<li>Painting, specializing in landscapes</li>
</ul>
</div>
</div>
<div class="col">
<figure>
<img src="images/zubair.jpg" class="float-right" alt="Zubair Aziz">
</figure>
</div>
</div>
</article>
<div class="row">
<div class="col-md-12">
<h3>Work Experience</h3>
<h4 class="top-buffer2">University of Rochester IT Consultant</h4>
<p>As an IT Consultant at the U of R, I assist with network registration and troubleshoot network issues, troubleshoot NetID and login issues, provide support through various methods,assist with various types of malware on students' personal computers.</p>
<h4>Media Prima Digital Developer Intern</h4>
<p>At Media Prima Digital, I worked with the team to develop modern websites and apps for various different uses, and was trained in both front end and back end systems for web development.</p>
<h3 class="top-buffer">Additional Experience</h3>
<p>I'm involved in some extra-curricular activities such as Alpha Kappa Psi, the professional business fraternity; and Grass Roots Soccer, a health organization that uses the power of soccer to educate, inspire, and mobilize young people to lead healthier lives. </p>
</div>
</div>
</div>
<?php include ('includes/footer.inc');?>
</div>
</body>
</html>