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
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
Brett Armstrong

139 changes: 139 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brett Armstrong's Coding Resume</title>
</head>
<body>
<header>
<h1>Brett Armstrong, Full-Stack Web Developer</h1>
<address>1446 Detroit St. Apt. 1<br> Denver, CO 80206</address>
<a href="mailto:brettarmstrong1234@gmail.com">brettarmstrong1234@gmail.com</a>
<hr>
</header>
<section>
<h2>Career Goals</h2>
<p>I am currently self-educating myself through various online resources. My goal is to become proficient at coding so that I can be competitive in the Web Developer job market. There are many things about the job of a Web Developer that appeal to me, and currently my goal is to at least have a cursory knowledge of both the front and back end worlds, and in the future specialize to suit my strengths.</p>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>Programming Languages</li>
<ul>
<li>Javascript</li>
<li>Python</li>
<li>Ruby/Rails</li>
</ul>
<li>Databases</li>
<ul>
<li>Node.js</li>
</ul>
<li>Platforms</li>
<li>Version Control</li>
<ul>
<li>Git</li>
</ul>
<li>Operating Systems</li>
<ul>
<li>Windows</li>
<li>Mac</li>
</ul>
<li>Other Tools</li>
<ul>
<li>Surge.sh</li>
</ul>
<li>Software Skills</li>
<ul>
<li>Excel</li>
<li>Photoshop</li>
</ul>
</ul>
</section>
<section>
<h2>Work Experience</h2>
<table>
<tr>
<th>Time</th>
<th>Name</th>
<th>Location</th>
<th>Position Title</th>
<th>Responsibilities</th>
<th>Contact Info</th>
</tr>
<tr>
<td>3 Years</td>
<td>University of Colorado</td>
<td>Boulder, CO</td>
<td>Teaching Assistant</td>
<td>Giving lessons to Bass Players, coordinating studio, and coaching chamber ensembles</td>
<td><em>Available on Request</em>, Paul Erhard</td>
</tr>
<tr>
<td>1 Year</td>
<td>Cheyenne Symphony Orchestra</td>
<td>Cheyenne, WY</td>
<td>Principal Bassist</td>
<td>Decide bow for section, play bass solos</td>
<td>Allyson Fleck<em>Phone Number Available on Request</em></td>
</tr>
</table>
</section>
<section>
<h2>Education</h2>
<table>
<tr>
<th>Time</th>
<th>School</th>
<th>Location</th>
<th>Major</th>
<th>Minor</th>
</tr>
<tr>
<td>2 years</td>
<td>University of Colorado</td>
<td>Boulder, CO</td>
<td>Masters of Music</td>
<td>N/A</td>
</tr>
<tr>
<td>4 Years</td>
<td>Western Michigan University</td>
<td>Kalamazoo, MI</td>
<td>Bachelors of Music</td>
<td>Philosphy</td>
</tr>
</table>
</section>
<section>
<h2>Achievements</h2>
<ul>
<li>Graduated Magna Cum Laude W.M.U.</li>
</ul>
</section>
<section>
<h2>Hobbies and Interests</h2>
<ul>
<li>Running</li>
<li>Boardgames</li>
<li>Hiking and Camping</li>
<li>Building Computers</li>
</ul>
</section>
<section>
<h2>References</h2>
<ul>
<li>Paul Erhard<em>Phone Number Available on Request</em></li>
<li>Allyson Fleck<em>Phone Number Available on Request</em></li>
<li>Becky Ostenburg<em>Phone Number Available on Request</em></li>
<li>Jean Denney<em>Phone Number Available on Request</em></li>
</ul>
</section>
<footer>
<hr>
<p>Brett Armstrong</p>
<address>1446 Detroit St. Apt. 1 Denver, CO 80206</address>
<a href="mailto:brettarmstrong1234@gmail.com">brettarmstrong1234@gmail.com</a>
</footer>
</body>
</html>