-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
264 lines (264 loc) · 9.93 KB
/
index.html
File metadata and controls
264 lines (264 loc) · 9.93 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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="mediaqueries.css" />
</head>
<body>
<nav id="desktop-nav">
<div class="logo">Michael Regan</div>
<div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<nav id="hamburger-nav">
<div class="logo">Michael Regan</div>
<div class="hamburger-menu">
<div class="hamburger-icon" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-links">
<li><a href="#about" onclick="toggleMenu()">About</a></li>
<li><a href="#experience" onclick="toggleMenu()">Experience</a></li>
<li><a href="#projects" onclick="toggleMenu()">Projects</a></li>
<li><a href="#contact" onclick="toggleMenu()">Contact</a></li>
</div>
</div>
</nav>
<section id="profile">
<div class="section__pic-container">
<img src="./assets/profile-pic3.JPG" alt="Michael Regan profile picture" />
</div>
<div class="section__text">
<p class="section__text__p1">Hello, I'm</p>
<h1 class="title">Michael Regan</h1>
<p class="section__text__p2">Computer Science, University of Virginia</p>
<div id="socials-container">
<img
src="./assets/linkedin.png"
alt="My LinkedIn profile"
class="icon"
onclick="location.href='https://www.linkedin.com/in/michael-regan-908796219/'"
/>
<img
src="./assets/github.png"
alt="My Github profile"
class="icon"
onclick="location.href='https://github.com/michaelpregan'"
/>
</div>
</div>
</section>
<section id="about">
<p class="section__text__p1">Get To Know More</p>
<h1 class="title">About Me</h1>
<div class="section-container">
<div class="section__pic-container">
<img
src="./assets/profile-pic.JPG"
alt="Profile picture"
class="about-pic"
/>
</div>
<div class="about-details-container">
<div class="about-containers">
<div class="details-container">
<img
src="./assets/education.png"
alt="Education icon"
class="icon"
/>
<h3>Education</h3>
<p>University of Virginia<br />Major: Computer Science<br />Minor: Spanish<br />Expected Graduation: May 2026</p>
</div>
</div>
<div class="text-container">
<p>
I'm from Northern Virginia but am currently in my final year of undergrad at the University of Virginia.
I am passionate about connecting with others and using technology to enact change.
I like to cook, read, play chess, and am learning to box and speak Chinese.
Thanks for visiting my site!
</p>
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='./#experience'"
/>
</section>
<section id="experience">
<p class="section__text__p1">Explore My</p>
<h1 class="title">Experience</h1>
<div class="experience-details-container">
<div class="details-container">
<h2 class="experience-sub-title">Work Experience</h2>
<div class="title-date-container">
<h3 class="company-title">Software Developer Intern - IBM</h3>
<div class="date-location-container">
<p class="job-date">May 2025 – August 2025</p>
<p class="job-location">Lowell, MA</p>
</div>
<h3 class="company-title">Tech Intern - Spry Methods, Inc.</h3>
<div class="date-location-container">
<p class="job-date">May 2024 – August 2024</p>
<p class="job-location">McLean, Virginia</p>
</div>
<h3 class="company-title">Data Engineer Intern - Falling Fruit</h3>
<div class="date-location-container">
<p class="job-date">May 2023 – August 2023</p>
<p class="job-location">Remote</p>
</div>
<h3 class="company-title">Research Intern - George Mason University</h3>
<div class="date-location-container">
<p class="job-date">June 2021 – January 2022</p>
<p class="job-location">Remote</p>
</div>
</div>
<h2 class="experience-sub-title">University Experience</h2>
<div class="title-date-container">
<h3 class="company-title">Teaching Assistant (CS 2100) - University of Virginia</h3>
<div class="date-location-container">
<p class="job-date">January 2024 – Present</p>
<p class="job-location">Charlottesville, Virginia</p>
</div>
<h3 class="company-title">Event Manager - Google Developer Student Club</h3>
<div class="date-location-container">
<p class="job-date">September 2023 – Present</p>
<p class="job-location">Charlottesville, Virginia</p>
</div>
</div>
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='./#projects'"
/>
</section>
<section id="projects">
<p class="section__text__p1">Browse My Recent</p>
<h1 class="title">Projects</h1>
<div class="experience-details-container">
<div class="about-containers">
<div class="details-container color-container">
<div class="article-container">
<img
src="./assets/poeltl.jpg"
alt="Project 1"
class="project-img"
style="width:auto;height:200px;"
/>
</div>
<h2 class="experience-sub-title project-title">Poeltl Solver</h2>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="location.href='https://github.com/michaelpregan/poeltl-solver'"
>
GitHub
</button>
</div>
<div class="text-container">Solving Poeltl, like Wordle but the NBA.</div>
</div>
<div class="details-container color-container">
<div class="article-container">
<img
src="./assets/Emissions.jpg"
alt="Project 2"
class="project-img"
style="width:auto;height:200px;"
/>
</div>
<h2 class="experience-sub-title project-title">Research Paper</h2>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="window.open('./assets/research.pdf')"
>
Download
</button>
</div>
<div class="text-container">Development of Hazardous Air Pollutant Emissions Estimates from 1990 to 2010 Based on Historical Data.</div>
</div>
<div class="details-container color-container">
<div class="article-container">
<img
src="./assets/bookhive.png"
alt="Project 3"
class="project-img"
style="width:auto;height:200px;"
/>
</div>
<h2 class="experience-sub-title project-title">BookHive</h2>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="location.href='https://github.com/michaelpregan/cs3240-bookhive'"
>
GitHub
</button>
</div>
<div class="text-container">A New Way to Lend and Borrow Textbooks</div>
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='./#contact'"
/>
</section>
<section id="contact">
<p class="section__text__p1">Get in Touch</p>
<h1 class="title">Contact Me</h1>
<div class="contact-info-upper-container">
<div class="contact-info-container">
<img
src="./assets/email.png"
alt="Email icon"
class="icon contact-icon email-icon"
/>
<p><a href="mailto:michaelpregan.8@gmail.com">michaelpregan.8@gmail.com</a></p>
</div>
<div class="contact-info-container">
<img
src="./assets/linkedin.png"
alt="LinkedIn icon"
class="icon contact-icon"
/>
<p><a href="https://www.linkedin.com/in/michael-regan-908796219/">LinkedIn</a></p>
</div>
</div>
</section>
<footer>
<nav>
<div class="nav-links-container">
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
</footer>
<script src="script.js"></script>
</body>
</html>