-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (111 loc) · 5.06 KB
/
index.html
File metadata and controls
134 lines (111 loc) · 5.06 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!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="shortcut icon" type="image/jpg" href="img/headshot.jpg">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<header>
<div class="flex">
<h1 class="name">Nick Satinover</h1>
<div>
<img id="headshot" src="img/headshot.jpg" alt="Headshot">
</div>
<h3 class="headline">Full Stack Developer</h3>
<span class="tagline">Experienced in .NET tech stack with training in Java and JavaScript</span>
</div>
</header>
<nav class="flex">
<ul class="main-nav menu">
<li><a id="linkedIn" href="https://linkedin.com/in/nicksatinover" target="_blank">LinkedIn Profile</a></li>
<li><a id="github" href="https://github.com/nsatinover" target="_blank">github</a></li>
<li><a href="pages/contact/contact.html">Contact Me</a></li>
<li><a href="pages/experience.html">Experience</a></li>
</ul>
</nav>
<main class="flex">
<div class="primary col">
<div class="h2Div">
<h2>Work Experience</h2>
</div>
<ul class="main-nav menu flex">
<span title="M&T Bank">
<li><a href="pages/experience.html#appDev">Application Developer</a></li>
</span>
<span title="Capital One Investing">
<li><a href="pages/experience.html#leadFloorAssociate">Lead Floor Associate</a></li>
<li><a href="pages/experience.html#principalClientService">Principal Client Service</a></li>
</span>
<span title="JPMorgan">
<li><a href="pages/experience.html#clientService">Client Service</a></li>
</span>
<span title="Capital One">
<li><a href="pages/experience.html#capitalOne">Capital One Positions</a></li>
</span>
</ul>
</div>
<div class="secondary col">
<div class="h2Div">
<h2>Education</h2>
</div>
<ul class="main-nav menu">
<li><a href="https://codedifferently.com/" target="_blank">Code Differently</a></li>
<li><a href="https://www.zipcodewilmington.com/" target="_blank">Zip Code Wilmington</a></li>
<span title="University of Delaware">
<li><a href="https://lerner.udel.edu/programs/mba-programs/mba-concentrations/information-technology/"
target="_blank">MBA - IT</a></li>
<li><a href="https://lerner.udel.edu/programs/undergraduate-programs/majors/marketing-bs/"
target="_blank">BS - Business Marketing</a></li>
</span>
</ul>
</div>
<!-- skills added by skills.js file -->
<div class="tertiary col">
<div class="h2Div">
<h2>Skills</h2>
</div>
<ul id="skillsRowOne" class="flex-row skills"></ul>
<ul id="skillsRowTwo" class="flex-row skills"></ul>
</div>
</main>
<aside class="flex">
<div class="col">
<h2>Downloads</h2>
<ul class="main-nav flex-row">
<li>
<a href="../../files/NickSatinoverResume.pdf" download="Resume">
<div id="resume">
<span title="Resume">
<label class="block">Resume</label>
<img id="resumeLink" src="../../img/resume.png" />
</span>
</div>
</a>
</li>
<li>
<a href="../../files/udOfficialTranscript.pdf" download="Transcript">
<div id="transcript" class="documents">
<span title="UD Transcript">
<label class="block">Transcript</label>
<img id="transLink" src="../../img/transcript.png" />
</span>
</div>
</a>
</li>
</ul>
</div>
</aside>
<footer class="flex">
<ul class="main-nav menu">
<li><a id="linkedIn" href="index.html#">Top of Page</a></li>
</ul>
</footer>
</div>
<script src="skills.js"></script>
</body>
</html>