-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathworkexp.html
More file actions
74 lines (60 loc) · 3.11 KB
/
workexp.html
File metadata and controls
74 lines (60 loc) · 3.11 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
<!DOCTYPE html>
<html>
<head>
<!-- add styling to the assets/css folder-->
<link rel="stylesheet" type="text/css" href="assets/css/portfolio.css" />
</head>
<body background="assets/img/white_leather.png">
<div class="body-center">
<!-- navbar -->
<div class="navbar">
<li><a href="index.html" style="text-decoration:none">Home</a></li>
<li><a href="aboutme.html" style="text-decoration:none">About Me</a></li>
<li><a href="workexp.html" style="text-decoration:none">Work Experience</a></li>
<li><a href="projects.html" style="text-decoration:none">Projects</a></li>
<li><a href="orgs.html" style="text-decoration:none">Organizations</a></li>
<li><a href="contact.html" style="text-decoration:none">Contact</a></li>
</div>
<!-- end navbar -->
<br><br>
<h2>Work Experience</h2>
<div style="height:500px;width:700px;border:2px groove gray;border-radius:15px;background-color:#ffffff;overflow:auto;padding:10px">
<h3>Computer Science ELA for ENG100</h3>
<span style="color:#909090"><i>August 2013-Present | Urbana, IL</i></span>
<ul>
<li type="square">Lead a class of 20-30 freshman computer science students, helping them transition into the College of Engineering</li>
<li type="square">Instruct and guide students with a computer science oriented project</li>
<li type="square">Lead various major-specific career building activities and assist with resume and cover letter building</li>
<li type="square">Mentor students throughout their semester in academic and social aspects</li>
</ul>
<h3>Goldman Sachs</h3>
<span style="color:#909090"><i>May 2013-August 2013 | New York, NY</i></span>
<ul>
<li type="square">Work alongside senior programmers to develop a data analysis program written in C#</li>
<li type="square">Have a hands on experience with the Technology Division‘s risk analysis and optimization programs</li>
<li type="square">Assist in the planning, organizing and execution of mass technology "moves"</li>
</ul>
<h3>UIUC Engineering Career Services</h3>
<span style="color:#909090"><i>August 2012-Present | Urbana, IL</i></span>
<ul>
<li type="square">Develop career resources and reference materials for students</li>
<li type="square">Communicate and market recruiting events to students</li>
<li type="square">Assist students with career exploration and employment search strategies</li>
<li type="square">Provide services to employers</li>
<li type="square">Assist with facilities and recruiting activities (i.e., Career Fairs & Expos)</li>
</ul>
<h3>MGL & AMR Trading Co.</h3>
<span style="color:#909090"><i>June 2009-August 2011 | Princeton, NJ</i></span>
<ul>
<li type="square">Assisted customers with making overseas shipments via phone, email and live chat</li>
<li type="square">Prepared paperwork for deployment of containers</li>
<li type="square">Utilized HTML to create web page drafts</li>
<li type="square">Assisted with database development utilizing Java</li>
</ul>
<br>
</div>
</div>
<!-- add javascript code to the assets/js folder-->
<script type="text/javascript" src="assets/js/portfolio.js"></script>
</body>
</html>