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
Written by Ashley McDonnell
Hosted @ https://ashmcd.github.io/assignment_html_resume/
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>
<title>Home</title>
<h1>Ashley McDonnell | Full-Stack Developer</h1>

<address class="">
40 Aluart Road, Innisfail <br>
Queensland 4860
</address>
<a href="mailto:ash.m.mcdonnell@gmail.com">ash.m.mcdonnell@gmail.com</a>
<hr>
</head>
<body>
<section id="career goals">
<h2>Career Goals</h2>
<p>To leverage the skills I've developed completing the Viking Code School program to become a full-stack developer</p>
</section>

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

<h3>Programming Languages</h3>
<ul>
<li>Javascript</li>
<li>Ruby</li>
<li>HTML5</li>
<li>PHP</li>
<li>CSS</li>
</ul>

<h3>Frameworks</h3>
<ul>
<li>Bootstrap 3</li>
<li>JQuery</li>
</ul>

<h3>Platforms and Software</h3>
<ul>
<li>Heroku</li>
<li>Pivotal Tracker</li>
<li>Github Version Control</li>
<li>MacOS</li>
</ul>

<h3>Software</h3>
<ul>
<li>Balsamiq Mockups</li>
<li>Atom</li>
<li>Brackets</li>

</ul>
</section>
<hr>

<section id="work experience">
<h3>Work Experience</h3>
<table>
<tr>
<th>Time in Years</th>
<th>Name of Company</th>
<th>Location</th>
<th>Position Title</th>
<th>Responsibilities</th>
</tr>
<tr>
<td>1</td>
<td>NHHO</td>
<td>London</td>
<td>Property Manager</td>
<td>Property Managment, Service Charge</td>
</tr>
<tr>
<td>5</td>
<td>Westpac</td>
<td>Sydney</td>
<td>Team Member</td>
<td>Customer Service, Information Requests</td>
</tr>
</table>

</section>
<hr>

<section id="Education">
<h3>Education</h3>
<table>
<tr>
<th>Time</th>
<th>School</th>
<th>Location</th>
<th>Level of Education</th>
</tr>
<tr>
<td>5 Years</td>
<td>Innisfail State High School</td>
<td>Innisfail</td>
<td>Year 12</td>
</tr>
<tr>
<td>0.5</td>
<td>Viking Code School</td>
<td>Online</td>
<td>Full-Stack Developer</td>
</tr>
</table>

</section>

<section id="achievements">
<h3>Achievements</h3>
<ul>
<li>High Performer Award for staff under 25 - Westpac - 2014</li>
<li>Westpac LEAN accreditation</li>
</ul>
</section>
<hr>

<section id="Hobbie and Intrests">
<h3>Hobbies and Intrests</h3>
<ul>
<li>Poker</li>
<li>Cooking</li>
<li>Memes</li>
</ul>

</section>
</body>

<footer>
<h2><small>Ashley McDonnell | Full-Stack Developer</small></h2>

<address class="">
<small>40 Aluart Road, Innisfail <br>
Queensland 4860</small>
</address>
<a href="mailto:ash.m.mcdonnell@gmail.com">ash.m.mcdonnell@gmail.com</a>
</footer>
</html>