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 @@
Johann Baptista
# assignment_html_resume
Build an HTML5 resume to jump start your job search
149 changes: 149 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
<!DOCTYPE html>
<html>
<head>
<title>Johann Baptista</title>
</head>
<body>
<header>
<h1>Johann Baptista | Software Engineer</h1>
<address>
<p>1601 Colusa Avenue</p>
<p>Davis, CA, 95616</p>
<p><a href = "mailto:baptistajohann@gmail.com">baptistajohann@gmail.com</a></p>
<hr>
</address>
</header>
<section>
<h2>Goals</h2>
<p>To obtain employment at a startup as a full-stack software engineer</p>
</section>
<section>
<h2>Skills</h2>
<h3>Programming Languages</h3>
<ol>
<li>JavaScript</li>
<li>HTML5</li>
<li>CSS3</li>
<li>Ruby</li>
<li>Java</li>
<li>Python</li>
<li>R</li>
<li>Sass</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>
<li>Github Pages</li>
<li>surge</li>
</ol>
<h3>Version Control</h3>
<ol>
<li>Git</li>
</ol>
<h3>Operating Systems</h3>
<ol>
<li>Linux</li>
<li>Windows</li>
<li>Mac</li>
</ol>
<h3>Other tools</h3>
<ol>
<li>VIM</li>
<li>R Shiny</li>
</ol>
<h3>Soft skills</h3>
<ol>
<li>Public speaking</li>
</ol>
</section>
<section>
<h2>Work Experience</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Company</th>
<th>Location</th>
<th>Position</th>
<th>Responsibilities</th>
<th>Contact Info</th>
</tr>
</thead>
<tr>
<td>2014-2016</td>
<td>Willamette University</td>
<td>Salem, OR</td>
<td>Private Tutor</td>
<td>Tutor students in math and statistics</td>
<td>Matt Barrero 503-XXX-XXXX</td>
<tr>
<tr>
<td>2016-2017</td>
<td>Willamette University</td>
<td>Salem, OR</td>
<td>QUAD Assistant</td>
<td>Drop-in tutoring in math and statistics</td>
<td>Jim Friedrick 503-XXX-XXXX</td>
<tr>
</table>
</section>
<section>
<h2>Education</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>School</th>
<th>Location</th>
<th>Major/Degree</th>
<th>Minor</th>
</tr>
</thead>
<tr>
<td>2013-2017</td>
<td>Willamette University</td>
<td>Salem, OR</td>
<td>BA Physics</td>
<td>Mathematics</td>
<tr>
<tr>
<td>2017-2018</td>
<td>Viking Code School</td>
<td>San Francisco, CA</td>
<td>N/A</td>
<td>N/A</td>
<tr>
</table>
</section>
<section>
<h2>Hobbies and Interests</h2>
<ol>
<li>Data analysis</li>
<li>Irish flute</li>
<li>Long coats</li>
</ol>
</section>
<section>
<h2>References</h2>
<p>Available upon request</p>
</section>
<footer>
<address>
<p>1601 Colusa Avenue</p>
<p>Davis, CA, 95616</p>
<p><a href = "mailto:baptistajohann@gmail.com">baptistajohann@gmail.com</a></p>
<hr>
</address>
</footer>
</body>
</html>