Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .Rhistory
Empty file.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# assignment_html_resume
Build an HTML5 resume to jump start your job search

Link to deployed page: https://genetinderholm.github.io/assignment_html_resume
141 changes: 141 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!-- Title -->
<title>Gene Tinderholm's Resume</title>
</head>
<body>

<!-- Main Header -->
<header>
<h1>Gene Tinderholm | Web Developer</h1>
<address>
12400 Inglewood Ave #1<br>
Savage, MN 55378
</address>
<a href="mailto:[email protected]">[email protected]</a>
<hr>
</header>

<!-- Career Goals -->
<section id="careerObjective">
<h2>Career Objective</h2>
<p>Hard working and driven student, who can meet strict deadlines. I am aiming to apply my, soon to be aquired, knowledge of full-stack web development to the open position at your company. My proven ananalytical skills, work-ethic and determination will aid your company in achieving its goals.
</p>
</section>

<!-- Skills Lists -->
<section id="skills">
<h2>Skills</h2>
<h3>Programming Languages</h3>
<ol>
<li>HTML5</li>
<li>C/C++</li>
<li>Javascript</li>
<li>R</li>
</ol>
<h3>Databases</h3>
<ol>
<li>None yet</li>
</ol>
<h3>Platform</h3>
<ol>
<li>heroku</h3>
</ol>
<h3>Version Control</h3>
<ol>
<li>git</li>
</ol>
<h3>Operating Systems</h3>
<ol>
<li>Linux, with an emphasis on the Arch and Slackware distributions in particular</li>
<li>Windows</li>
<li>Mac OSX and after</li>
</ol>
<h3>Other Tools</h3>
<ol>
<li>A strong knowledge of the underlying fundamentals of computer science</li>
</ol>
<h3>Soft Skills</h3>
<ol>
<li>Driven</li>
<li>Strong work-ethic</li>
<li>Analytical mind</li>
<li>Strong interpersonal skills</li>
</section>

<!-- Work Experience -->
<section id="workExperience">
<h2>Work Experience</h2>
<table>
<tr>
<th>Time With Company</th>
<th>Company Name</th>
<th>Location</th>
<th>Position Title</th>
<th>Responsibilities</th>
<th>Contact Info</th>
</tr>
<tr>
<td>2 years (2012-2014)</td>
<td>Seal Pizza</td>
<td>New Prague, MN</td>
<td>Delivery Expert</td>
<td>Ensure the quick and efficient distribution of product from a central location to the customer</td>
<td>(952)758-8833, Manager:Karin Schultz</td>
</tr>
<tr>
<td>3 years (2014-2017)</td>
<td>Mann Pizza</td>
<td>Prior Lake, MN</td>
<td>Delivery Expert</td>
<td>Ensure the quick and efficient distribution of product from a central location to the customer</td>
<td>(952)440-3030, Manager:Joe McKay</td>
</tr>
</table>
</section>

</section>

<!-- Achievements -->
<section id="achievements">
<h2>Achievements</h2>
<ul>
<li>Top fundraiser for St. Jude Children's Hospintal: 2013, 2014, 2015, 2016</li>
<li>Broke the hold that alcohol had over my life: 2015</li>
</ul>
</section>

<!-- Hobbies -->
<section id="hobbies">
<h2>Hobbies</h2>
<ul>
<li>Studying the latin and greek languages</li>
<li>Ancient history</li>
<li>Sudoku puzzles</li>
</ul>
</section>

<!-- References -->
<section id="references">
<h2>References</h2>
<p>Available upon request</p>
</section>

<!-- Main Footer -->
<footer>
<strong>
<p>Gene Tinderholm | Web Developer
<address>
12400 Inglewood Ave #1 <br>
Savage, MN 55378
</address>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</strong>
</footer>
</body>
</html>