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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# assignment_html_resume
Build an HTML5 resume to jump start your job search
Link to my HTML resume: https://sarahschoonmaker.github.io/assignment_html_resume/
3 changes: 3 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
h1 {
color: #006400;
}
145 changes: 145 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
<!Doctype html>

<html lang="en">
<head>
<meta charset="utf-8">
<title>Sarah's Resume</title>
<link href="css/style.css" rel="stylesheet">
</head>

<body>
<div class="background">
<header class="navigation">
<h1>Sarah Schoonmaker | Software Engineer</h1>
<address>
Mozilla Foundation<br>
1981 Landings Drive<br>
Building K<br>
Mountain View, CA 94043-0801<br>
<a href="mailto:[email protected]">[email protected]</a><br>
</address>
<hr width="100%" size="8" color="gray">
<section class="goals">
<h2>Goals</h2>
<p>Build highly functional and beautifully designed websites in an engaging, supportive, and fun culture</p>
</section>
<section class="skills">
<h2>Skills</h2>
<ol type="1">
<li>JavaScript</li>
<li>NodeJS</li>
<li>ExpressJS</li>
<li>jQuery</li>
<li>Agile Methodologies</li>
<li>APIs</li>
<li>HTML & CSS</li>
</ol>
</section>
<section class="databases">
<h2>Databases</h2>
<ol type="1">
<li>SQLite3</li>
<li>PostgreSQL</li>
<li>MySQL</li>
<li>MongoDB</li>
<li>Redis</li>
</ol>
</section>
<section class="platforms">
<h2>Platforms</h2>
<ol type="1">
<li>Heroku</li>
<li>AWS</li>
</ol>
</section>
<section class="experience">
<h2>Experience</h2>
<table border="1", cellpadding=3px, cellspacing=3px>
<thead>
<tr>
<th>Dates</th>
<th>Company</th>
<th>Location</th>
<th>Title</th>
<th>Responsibilities</th>
</tr>
</thead>
<tbody>
<tr>
<td>January 2014 - Present</td>
<td></td>
<td>New York, NY</td>
<td>Equity Trader</td>
<td>Get the job done</td>
</tr>
</tbody>
<tbody>
<tr>
<td>June 2003 - June 2005</td>
<td>Pulte Mortgage</td>
<td>Englewood, CO</td>
<td>Mortgage Processor/Quality Assurance Auditor</td>
<td>Responsibilities</td>
</tr>
</tbody>
</table>
</section>
<section class="education">
<h2>Education</h2>
<table border="1", cellpadding=3px, cellspacing=3px>
<thead>
<tr>
<th>Years:</th>
<th>School Name:</th>
<th>Location:</th>
<th>Degree:</th>
</tr>
</thead>
<tbody>
<tr>
<td>2012-2013</td>
<td>University of Edinburgh</td>
<td>Edinburgh, Scotland</td>
<td>MSc Research in place of PhD in philosophy</td>
</tr>
</tbody>
<tbody>
<tr>
<td>2010-2012</td>
<td>California State University, Los Angeles</td>
<td>Los Angeles, CA</td>
<td>MA Philosophy</td>
</tr>
</tbody>
<tbody>
<tr>
<td>2009-2010</td>
<td>University of Colorado, Denver</td>
<td>Denver, CO</td>
<td>BA Philosophy</td>
</tr>
</tbody>
<tbody>
<tr>
<td>1999-2003</td>
<td>University of Denver</td>
<td>Denver, CO</td>
<td>BS Finance</td>
</tr>
</tbody>
</table>
</section>
<hr width="100%" size="8" color="gray">
<footer>
<p>
<strong>
Mozilla Foundation<br>
1981 Landings Drive<br>
Building K<br>
Mountain View, CA 94043-0801<br>
<a href="mailto:[email protected]">[email protected]</a><br><strong>
</p>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>
7 changes: 7 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
h1 {
color: #006400;
}

footer p {
font-size: 8px;
}