Skip to content

Commit

Permalink
added student examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhea0 committed Jul 27, 2014
1 parent a3c8128 commit 255a350
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 0 deletions.
24 changes: 24 additions & 0 deletions resume/examples/main.css
@@ -0,0 +1,24 @@
body {
font-size: 14px;
font-family: verdana, sans-serif;
background-color: #d3d3d3;
}


#logo {
width: 100px;
height: 200px;
}

.heading {
color: blue;
text-decoration: underline;

}

#container {
padding: 50px;
max-width: 700px;
background-color: #ffc0cb;
margin: auto;
}
73 changes: 73 additions & 0 deletions resume/examples/resume.html
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="main.css">
<title> Brin's Resume</title>
</head>

<body>
<div id= "container">
<h1 class="heading">Brin's Resume</h1>
<h3> Aspiring Coder</h3>
<ul>
<li>Sydney, NSW , Australia</li>
<li>contact email: brin2806@gmail.com</li>
</ul>

<h2 class = "heading">History and Profile</h2>
<p>A high-achieving Financial Services Executive with over 18 years of experience in investment management operations, product development, risk management & governance, fund accounting & reporting and audit & taxation in the financial services industry. Excellent commercial acumen and a balanced business focus. Extremely hard-working, tenacious, energetic and trust worthy. Excellent negotiation, interpersonal and communication skills. Driven to succeed and loves challenges.</p>
<br>

<h2 class= "heading">Education</h2>
<ul>
<li>Master of Applied Finance</li>
<li> Bachelor of Business</li>

</ul>
<br>
<h2 class= "heading">Work History</h2>

<div id="logo">
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Deutsche_Bank_logo_without_wordmark.svg/150px-Deutsche_Bank_logo_without_wordmark.svg.png">
<img src="http://upload.wikimedia.org/wikipedia/en/thumb/1/1b/AMP_Limited_%28logo%29.svg/131px-AMP_Limited_%28logo%29.svg.png">
</div>
<br>

<table border = 1px>

<thead style = "color: red">
<tr>
<th>Organisation</th>
<th>Role</th>
</tr>

</thead>
<tbody>
<tr>
<td>KPMG</td>
<td>Principal Adviser - Risk Management</td>
</tr>
<tr>
<td>Deutsche</td>
<td>Head of Product Management</td>
</tr>
<tr>
<td>AMP</td>
<td>Consultant</td>
</tr>
</tbody>


</table>
<br>
<h2 class="heading">Skill Set</h2>
<ul>
<li>Over 18 years of experience in the financial services industry </li>
<li>Excellent business acumen and focus on long term profitability</li>
<li>Results driven and goal oriented</li>

</ul>
</div>

</body>
</html>

0 comments on commit 255a350

Please sign in to comment.