Merge pull request #47 from aecabhijeet/master

aj-resume for cohort-2 posted in the community folder
This commit is contained in:
wlfmnstr 2024-04-21 19:25:51 -05:00 committed by GitHub
commit dc9b5cd6e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 187 additions and 0 deletions

View file

@ -0,0 +1,159 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dwight Schrute's Resume</title>
<link rel="stylesheet" href="src.css" />
</head>
<body>
<main>
<!--Resume referred from http://bit.ly/49nO6Xq-->
<section>
<h1 style="text-align: center;">
Dwight K. Schrute. III
</h1>
<div style="text-align: center;">
C/O SCHRUTE FARMS, MAIN STREET, HONESDALE, PA 18431
<br>
(T) 570-555-1212 (E) DSCHRUTE@SCHRUTEFARMS.COM
</div>
</section>
<section title="Summary of Qualifications">
<div class="sectionTitle">SUMMARY OF QUALIFICATIONS</div>
<div class="work">
<ul>
<li>
Star salesman, beet farmer, bed & breakfast proprietor, aspiring freelance bodyguard, office building owner, and former assistant [to the] regional manager
</li>
<li>
Able to vanquish customer resistance through physically imposing alpha-male traits and insatiable, merciless, jackhammer-like techniques
</li>
<li>
13-time winner of Salesman of the Month award in 2005 and Salesman of the Year
</li>
<li>
Leader and mentor of underlings
</li>
<li>
Expert in martial arts weaponry, paintball, and pre-industrial German
</li>
</ul>
</div>
</section>
<section>
<div class="sectionTitle">PROFESSIONAL EXPERIENCE</div>
<div class="work">
<div class="workTitle">
<strong>Dunder Mifflin Paper Co. Inc., A Division of Sabre, </strong>Scranton, PA
<br>
<strong>Sales Representative / Former Assistant [to the] Regional Manager</strong>
<br>
<i>Micro-cap regional paper and office supply distributor</i>
</div>
<div class="workDuration">
2005 - Present
</div>
</div>
<div>
<ul>
<li>
Close more sales with revenues totaling more US dollars than any other employee, past, present, and future (projected)
</li>
<li>
Act as Regional Manager's eyes, ears, and right hand, overseeing and reporting on employee conduct, productivity, and arrival/departure times
</li>
<li>
Instituted "Schrute Bucks" reward system, immeasurably raising office morale
</li>
<li>
Serve as self-appointed enforcer of The Rules (Policies and Procedures Manual)
</li>
</ul>
</div>
<div class="work">
<div class="workTitle">
<strong>Schrute Farms,</strong>Honesdale, PA
<br>
<strong>General Manager (concurrent with Dunder Mifflin / Sabre role)</strong>
<br>
<i>A family-owned 60-acre (240,000-square-meter) working beet farm</i>
</div>
<div class="workDuration">
1980 - Present
</div>
</div>
<div>
<ul>
<li>
Manage operations at the #1 beet-related agritourism B&B destination in Northeastern PA
</li>
<li>
Provide fine accommodations for beet enthusiasts in themed guest rooms representing "America," "Nighttime," and "Irrigation"
</li>
<li>
Meet or exceed beet needs of local stores, restaurants, and roadside stands
</li>
<li>
Facilitate recreational activities including but not limited to manure dodge ball, fresh butter statue sculpting, and beet syrup and rum making
</li>
</ul>
</div>
</section>
<section>
<div class="sectionTitle">EDUCATION</div>
<div>
<div class="work">
<div class="workTitle">
<strong>Scranton University, </strong>Scranton, PA
</div>
<div class="workDuration">
1992
</div>
</div>
<div class="work">
<div class="workTitle">
<strong>Bachelor's Degree, </strong>Business Administration
</div>
<div class="workDuration">
GPA: 2.99987
</div>
</div>
</div>
</section>
<section>
<div class="sectionTitle">SPECIALIZED SKILLS</div>
<div>
<ul>
<li>
Willingness to do anything to close a sale and/or please higher-ups
</li>
<li>
Resistance to germs, viruses, fungi, and most other health threats
</li>
<li>
Ability to raise and lower own cholesterol at will
</li>
<li>
Others too numerous to mention
</li>
</ul>
</div>
</section>
</main>
<footer style="color: grey; font-size: x-small; text-align: right;">
specialized resume available upon request
</footer>
</body>
</html>

View file

@ -0,0 +1,28 @@
.sectionTitle {
background-color: #3b3b3b;
color: azure;
font-size:auto;
text-align: center;
vertical-align: middle;
height: 2em;
size: auto;
}
.work{
display: flex;
padding-block: .5em;
}
.workTitle{
flex: 1;
text-align: left;
padding-left: 1em;
vertical-align: middle;
}
.workDuration{
flex: .5;
text-align: right;
padding-right: 1em;
vertical-align: middle;
}