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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# assignment_html_resume
Build an HTML5 resume to jump start your job search
Courtney Van Ert
189 changes: 189 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
<!DOCTYPE html>
<html>
<head>
<title>HTML5 Resume</title>
<h1>Courtney Van Ert | Full-Stack Developer</h1>

<address class="">
1030 Pearl St<br>
Apt 14<br>
Denver, CO 80203
</address>
<a href="mailto:cvanert@uwalumni.com">cvanert@uwalumni.com</a>
<hr>
</head>

<body>

<section id="career goals">
<h2>Career Goals</h2>
<p>Overall Goal: Cultivate understanding of both front- and back-end to become a skilled and effective full-stack developer. Break into a field I'm genuinely passionate about.</p>
<p>Current Goal: Master the material offered in Viking Code School's Free Prep Courses to facilitate acceptance into their Immersive Program.</p>
</section>

<section id="skills">
<h2>Skills</h2>

<h3>Programming Languages</h3>
<ul>
<li>Bash</li>
<li>CSS3</li>
<li>HTML5</li>
<li>JavaScript</li>
<li>Python</li>
<li>Ruby</li>
<li>Sass</li>
</ul>

<h3>Databases</h3>
<ul>
<li>Will be acquiring</li>
</ul>

<h3>Platforms</h3>
<ul>
<li>CodePen</li>
<li>Github</li>
<li>Heroku</li>
</ul>

<h3>Version Control</h3>
<ul>
<li>Git</li>
</ul>

<h3>Operating Systems</h3>
<ul>
<li>iOS</li>
<li>macOS X</li>
</ul>

<h3>Other Tools</h3>
<ul>
<li>Atom</li>
<li>Balsamiq Mockups</li>
<li>Pivotal Tracker</li>
<li>Terminal</li>
</ul>

<h3>Soft Skills</h3>
<ul>
<li>Creative</li>
<li>Driven by problem-solving</li>
</ul>
</section>

<section id="work experience">
<h2>Work Experience</h2>
<table>
<thead>
<tr>
<th scope="col">Time</th>
<th scope="col">Location</th>
<th scope="col">Position Title</th>
<th scope="col">Responsibilities/Description</th>
<th scope="col">Contact Info</th>
</tr>
</thead>
<tr>
<td>April 2017 - </td>
<td>Denver, CO</td>
<td>Office Specialist II</td>
<td>
<p>...</p>
<td>Centura Orthopedics (Centura Health Physician Group)</td>
</tr>
<tr>
<td>October 2014 - April 2017</td>
<td>Denver, CO</td>
<td>Office Specialist II</td>
<td>
<p>Lead intake coordinator. Helped create and implement new intake process for liver referrals; subsequently, saved company thousands of dollars. Started development of similar intake process for kidney referrals.</p>
<p>Member for 2016 Performance Improvement (PI) committee. Increased patient satisfaction regarding access to clinical staff and communication by 16.9% in the first three months (using data from survey results).</p>
</td>
<td>Transplant Center at Porter Adventist Hospital (Centura)</td>
</tr>
<tr>
<td>February 2012 - October 2014</td>
<td>Wauwatosa, WI</td>
<td>Lead Receptionist</td>
<td>
<p>Took on project to locate errors in insurance claims processing of claims going back two years. Worked with insurance companies to reimburse clinic for improperly paid claims and denied claims. Recovered thousands of dollars in improperly paid and denied insurance claims for the company. Served as IT.</p>
</td>
<td>The REDI Clinic, a division of Pathway Clinic, SC</td>
</tr>
</table>
</section>

<section id="education">
<h2>Education</h2>
<table>
<thead>
<tr>
<th scope="col">Time</th>
<th scope="col">School</th>
<th scope="col">Location</th>
<th scope="col">Major/Degree</th>
<th scope="col">Minor</th>
</tr>
</thead>
<tr>
<td>2009 - 2011</td>
<td>University of Wisconsin-Madison</td>
<td>Madison, WI</td>
<td>Bachelor's of Science in Psychology</td>
<td>N/A</td>
</tr>
<tr>
<td>2008 - 2009</td>
<td>Madison Area Technical College</td>
<td>Madison, WI</td>
<td>General Education Requirements (attempt to offset the debt incurred from going out-of-state previously)</td>
<td>N/A</td>
<tr>
<td>2006 - 2008</td>
<td>The Ohio State University</td>
<td>Columbus, OH</td>
<td>Psychology (completed at the University of Wisconsin-Madison)</td>
<td>N/A</td>
</tr>
</table>
</section>

<section id="achievements">
<h2>Achievements</h2>
</section>

<section id="hobbies and interests">
<h2>Hobbies and Interests</h2>
<ul>
<li>Coding</li>
<li>Exercise</li>
<li>Herman</li>
<li>Live music</li>
<li>Nature</li>
</ul>
</section>

<section id="references">
<h1>References</h1>
<p>Available upon request</p>
</section>

<footer>
<p>
<strong>
Courtney Van Ert | Full-Stack Developer
<address class="">
1030 Pearl St<br>
Apt 14<br>
Denver, CO 80203
</address>
<a href="mailto:cvanert@uwalumni.com">cvanert@uwalumni.com</a>
</strong>
</p>
</footer>

</body>

</html>