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 @@
# assignment_html_resume
Build an HTML5 resume to jump start your job search
Jon Szeto
167 changes: 167 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
<!DOCTYPE html>
<html>
<head>
<header><h1>Jon Szeto | Web Developer</h1></header>
<address>
8168 Primanti Blvd. <br>
Raleigh, NC 27612
</address>
<a href="mailto:Jonszeto821@gmail.com">Jonszeto821@gmail.com</a>
<hr>
</head>
<body>
<!--Career Goals Section-->
<section>
<header><h1>Career Goals</h1></header>
<p> My goal, with Viking Code School, is to develop my programming skillset to land a full time Web Development position.
</p>
</section>
<!--Skills Section-->
<section>
<header><h1>Skills</h1>
<h2>Programming Languages</h2>
<ul>
<li></li>
</ul>
<h2>Databases</h2>
<ul>
<li></li>
</ul>
<h2>Platforms</h2>
<ul>
<li></li>
</ul>
<h2>Version Control</h2>
<ul>
<li>Git</li>
</ul>
<h2>Operating Systems</h2>
<ul>
<li>OS X</li>
<li>Windows</li>
</ul>
<h2>Other Tools</h2>
<ul>
<li>Jira</li>
</ul>
<h2>Soft Skills</h2>
<ul>
<li>Flexible</li>
<li>Communication</li>
</ul>
</section>

<!--Work Experience Section-->
<section>
<header><h1>Work Experience</h1></header>
<table>
<thead>
<tr>
<th scope="col">Time</th>
<th scope="col">Name</th>
<th scope="col">Location</th>
<th scope="col">Position Title</th>
<th scope="col">Responsibilities</th>
<th scope="col">Contact Info</th>
</tr>
</thead>
<tbody>
<tr>
<td>2012-2016</td>
<td>Fidelity</td>
<td>Raleigh, NC</td>
<td>Systems Analyst</td>
<td>Understanding and identifying system needs for projects</td>
<td>Contact 1: 555-123-1234</td>
</tr>
<tr>
<td>2016-2017</td>
<td>VitalSource</td>
<td>Raleigh, NC</td>
<td>Integration Manager</td>
<td>Assisted clients with implementing company products into their systems</td>
<td>Contact 1: 555-123-1234</td>
</tr>
</tbody>
</table>
</section>

<!--Education Section-->
<section>
<header><h1>Education</h1></header>
<table>
<thead>
<tr>
<th scope="col">Time</th>
<th scope="col">School</th>
<th scope="col">Location</th>
<th scope="col">Major/Degree Earned</th>
<th scope="col">Minor</th>
</tr>
</thead>
<tbody>
<tr>
<td>2008-2012</td>
<td>Bentley University</td>
<td>Waltham, MA</td>
<td>Computer Information Systems</td>
<td>Accounting & Chinese</td>
</tr>
</tbody>
</table>
</section>

<!--Achievements Section-->
<section>
<header><h1>Achievements</h1></header>
<ol>
<li></li>
<li></li>
<li></li>
<ol>
</section>

<!--Hobbies and Interests Section-->
<section>
<header><h1>Hobbies and Interests</h1></header>
<ul>
<li>Powerlifting</li>
<li>Music Production</li>
<li>Soccer</li>
<ul>
</section>

<!--References Section-->
<section>
<header><h1>References</h1></header>
<table>
<caption><em>Available upon request</em></caption>
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Contact</th>
<th scope="col">Association</th>
</tr>
</thead>
<tbody>
<tr>
<td>Julius Peachtree</td>
<td>555-123-4567</td>
<td>Manager</td>
</tr>
</tbody>
</table>
</section>
</body>
<footer>
<hr>
<strong><small>
<header>Jon Szeto | Web Developer</header>
<address>
8168 Primanti Blvd. <br>
Raleigh, NC 27612
</address>
<a href="mailto:Jonszeto821@gmail.com">Jonszeto821@gmail.com</a>
</small></strong>
</footer>
</html>