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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# assignment_html_resume
Build an HTML5 resume to jump start your job search

By Ryan Barnett

[See Resume](https://ryandbarnett.github.io/assignment_html_resume/)
179 changes: 179 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Ryan Barnett's HTML5 Resume</title>
</head>
<body>
<!-- Contact Info -->
<header>
<h1>Ryan Barnett | Software Engineer</h1>

<address>
1967 Lakeshore Road
<br>
Camden, SC 29020
</address>

<a href="mailto:ryan@localimpact.co">
ryan@localimpact.co
</a>
</header>
<hr>

<!-- Goals -->
<section>
<h2>Goals</h2>

<p>My main objective is to become the best software engineer in South Carolina!</p>
</section>

<!-- Skills -->
<section>
<h2>Skills</h2>

<h3>Programming Languages</h3>
<ol>
<li>HTML5</li>
<li>CSS3</li>
<li>SASS</li>
<li>Javascript</li>
<li>Ruby</li>
</ol>

<h3>Databases</h3>
<ol>
<li>SQLite3</li>
<li>PostgreSQL</li>
<li>MySQL</li>
<li>MongoDB</li>
<li>Redis</li>
</ol>

<h3>Platforms</h3>
<ol>
<li>Heroku</li>
<li>AWS</li>
</ol>

<h3>Version Control</h3>
<ol>
<li>Git</li>
<li>Github</li>
</ol>

<h3>Operating Systems</h3>
<ol>
<li>Windows</li>
<li>Unix</li>
<li>Mac OS X</li>
</ol>

<h3>Other Tools</h3>
<ol>
<li>Sublime Text</li>
<li>Wordpress</li>
</ol>

<h3>Soft Skills</h3>
<ol>
<li>Adaptable</li>
<li>Team Player</li>
<li>Trustworthy</li>
</ol>
</section>

<!-- Education -->
<section>
<h2>Education</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>School</th>
<th>Location</th>
<th>Certificate</th>
</tr>
</thead>
<tbody>
<tr>
<td>2 Years</td>
<td>Harvard</td>
<td>Online</td>
<td>Web Technologies</td>
</tr>
</tbody>
</table>
</section>

<!-- Work Experience -->
<section>
<h2>Work Experience</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Name</th>
<th>Location</th>
<th>Position Title</th>
<th>Responsibilities</th>
<th>Contact Info</th>
</tr>
</thead>
<tbody>
<tr>
<td>2 Years</td>
<td>Local Impact</td>
<td>Camden, SC</td>
<td>Developer</td>
<td>Problem Solver</td>
<td>803-412-2840</td>
</tr>
</tbody>
</table>
</section>

<!-- Acheivements -->
<section>
<h2>Achievements</h2>

<ol>
<li>Honorably Served in US Marine Corps</li>
<li>Sole Web Developer for Marketing Firm</li>
</ol>
</section>

<!-- Hobbies and Interests -->
<section>
<h2>Hobbies and Interests</h2>

<ol>
<li>Learning</li>
<li>Fostering Kittens</li>
<li>Raising Ducks</li>
</ol>
</section>

<!-- References -->
<section>
<h2>References</h2>

<p><em>Available upon request</em></p>
</section>

<!-- Footer -->
<footer>
<strong>
Ryan Barnett | Software Engineer * 1967 Lakeshore Road
Camden, SC 29020 * <a href="mailto:ryan@localimpact.co">ryan@localimpact.co</a>
</strong>
</footer>
<br>
<br>
<br>
<br>

</body>
</html>
Loading