-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
187 lines (168 loc) · 7.09 KB
/
index.html
File metadata and controls
187 lines (168 loc) · 7.09 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Homework 1: Updating and improving my personal page
</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<header class="header-grid">
<!--Header for the webpage body -->
<aside class="header-img">
<a href="https://etownbluejays.com/sports/mens-cross-country/roster/nolan-pettit/15089">
<img src="headshot.png" alt="Headshot" width="250">
</a>
</aside>
<article class="header-text">
<h1>Nolan Pettit</h1>
<p>Elizabethtown College student double-majoring in computer and data science,
seeking a summer internship to apply and reinforce my education, with the
possibility of transitioning to full-time employment after graduation.
A team player with excellent communication skills who thrives when
working with people of diverse backgrounds.</p>
</article>
<aside class="etown-logo">
<a href="https://www.etown.edu/">
<img src="etown-logo.jpg" alt="Etown Logo" width="350">
</a>
</aside>
</header>
<main>
<nav class="navigation-bar">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
<!-- start of first container -->
<section class="first-container" >
<!--Main section for the webpage body -->
<aside class="related-courses">
<h3>Related Courses</h3>
<ul>
<li>Statistical Learning</li>
<li>Web Development</li>
<li>Software Engineering</li>
<li>Data Structures</li>
<li>Systems Programming</li>
<li>Introduction to Data Science</li>
<li>Calculus III</li>
<li>Linear Algebra</li>
<li>Statistical Methods in Research</li>
</ul>
</aside>
<article class="profiencies" >
<h3>Profiencies</h3>
<ul>
<li>Microsoft Office</li>
<li>Python</li>
<li>Java</li>
<li>C Programming</li>
<li>R Studio</li>
<li>Pandas</li>
<li>German</li>
<li>Statistics</li>
<li>Data Analytics</li>
</ul>
</article>
</section>
<!-- start of middle container -->
<section class="middle-container">
<div id="jobs">
<h3>Work Experience</h3>
<!-- start of UNL job information -->
<section class="UNL-job">
<div id="UNL-info">
<h4>
Research Intern, Unmanned Systems
</h4>
<ul>
<li>
National Science Foundation (NSF) funded Research Experience for Undergraduates (REU)
</li>
<li>
Worked in a cross-discipline team, conducting research on, ”Synergistic Communications with High Resiliency”
</li>
</ul>
</div>
<div id="UNL-logo">
<a href="https://www.unl.edu/summerprogram/unmanned">
<img src="unl-logo.png" alt="UNL Logo" width="150">
</a>
</div>
</section>
<!-- start of Learning Tree job information -->
<section class="Learning-tree">
<div id="LT-info">
<h4>
Data Science and Research Intern
</h4>
<ul>
<li>
Redesigned the entire training program for future hires
</li>
<li>
Updated Learning Tree International corporate database to appro
priately account for over 1,000 employee training records
</li>
<li>
Presented results to senior Learning Tree International
management
</li>
</ul>
</div>
<div id="LT-logo">
<a href="https://www.learningtree.com/">
<img src="LT-logo.png" alt="LT Logo" width="300">
</a>
</div>
</section>
</div>
</section>
<section class="final-container">
<div id="Extracurriculars">
<h3>Extracurricular Activities</h3>
<div class="College">
<h4>
Collegiate Academic Achievements
</h4>
<ul>
<li>
Presidential Scholarship
</li>
<li>
Dean`s List
</li>
<li>
Emerging Scholar
</li>
</ul>
</div>
<div class="Athletics">
<h4>
Cross Country and Track & Field
</h4>
<ul>
<li>
Varsity Division III distance runner
</li>
<li>
USTFCCCA All-Academic Team
</li>
</ul>
</div>
</div>
</section>
</main>
<footer>
<a class="footer-link" href="https://www.linkedin.com/in/nolan-pettit/">LinkedIn</a>
<a class="footer-link" href="https://github.com/NolanP2003">GitHub</a>
<p class="copyright">© 2023 Nolan Pettit @ CS310 - Elizabethtown College.</p>
</footer>
</body>
</html>