forked from code-differently/RR-JS-HTML-Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (101 loc) · 3.92 KB
/
index.html
File metadata and controls
116 lines (101 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nick Satinover</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="main-header">
<div class="container clearfix">
<h1 class="name">Nick Satinover</h1>
<ul class="main-nav">
<li><a id="linkedIn" href="https://linkedin.com/in/nicksatinover">LinkedIn Profile</a></li>
<li><a href="pages/contact/contact.html">Contact Me</a></li>
<li><a href="pages/experience.html">Experience</a></li>
</ul>
</div>
</header>
<div class="banner">
<img class="logo" id="headshot" src="img/headshot.jpg" alt="Headshot">
<h1 class="headline">Developer Open for New Opportunities</h1>
<span class="tagline">Experienced in .NET with training in Java and JavaScript</span>
<hr />
<div id="prevEmpLinks">
<h2><u>Previous Employers</u></h2>
<a
href="https://www.ing.com/Newsroom/News/Press-releases/PROld/ING-to-sell-ING-Direct-USA-to-Capital-One.htm">
<span title="Now Capital One">
<img src="img/employerThumb/ingDirect.jpg" alt="ING Direct">
</a>
</span>
<a href="https://www.capitalone.com/">
<span title="www.capitalone.com">
<img src="img/employerThumb/capitalOne.jpg" alt="Capital One">
</span>
</a>
<a href="https://www.jpmorgan.com/global">
<span title="www.jpmorgan.com">
<img src="img/employerThumb/JPMorgan.jpg" alt="JPMorgan">
</span>
</a>
<a href="https://www3.mtb.com/personal">
<span title="www.mtb.com">
<img src="img/employerThumb/mtBank.jpg" alt="M&T Bank">
</span>
</a>
</div>
<hr />
<div id="objective">
<h2><u>Objectives</u></h2>
<ul id="objList">
<li>Learn front end dev skills</li>
<li>Full stack development</li>
<li>Improve as a technologist</li>
</ul>
</div>
</div>
<main>
<div class="container clearfix">
<div class="secondary col">
<a href="pages/experience.html">
<h2>Work Experience</h2>
</a>
<ul>
<li><a href="pages/experience.html#appDev">Application Developer</a></li>
<li><a href="pages/experience.html#leadFloorAssociate">Lead Floor Associate</a></li>
<li><a href="pages/experience.html#principalClientService">Principal Client Service</a></li>
<li><a href="pages/experience.html#clientService">Client Service</a></li>
<li><a href="pages/experience.html#capitalOne">Capital One Positions</a></li>
</ul>
</div>
<div class="primary col">
<h2>Education</h2>
<ul>
<li>Code Differently</li>
<li>Zip Code Wilmington</li>
<li>MBA - IT</li>
<li>BS - Business Marketing</li>
</ul>
</div>
<div class="tertiary col">
<h2>Skills</h2>
<ul>
<li>.NET/ C#</li>
<li>Java</li>
<li>TSQL</li>
<li>SSRS</li>
<li>JUnit, XUnit</li>
<li>Jira, Version One</li>
<li>TFS, Git</li>
</ul>
</div>
</main>
</div>
<footer class="main-footer">
footer
</footer>
</body>
</html>