-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
64 lines (61 loc) · 3.16 KB
/
Copy pathabout.html
File metadata and controls
64 lines (61 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emmet Larson</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Emmet Larson</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="software_projects.html">Software Projects</a></li>
<li><a href="game_projects.html">Game Projects</a></li>
<li><a href="hardware_projects.html">Hardware Projects</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>About Me!</h2>
<div class="about-container">
<div class="text-content">
<p>My name is Emmet Larson. I am a junior Computer Science and Mathematics double-major currently attending York College of Pennsylvania.
I'm involved with the rock climbing club and work as a software engineering tutor on campus.
</p>
<p> In my free time, I love to play guitar, spend time outdoors, and </p>
<p>I can be best contacted by phone: +1 610-750-0391</p>
<p>Or by email: elars1002 at gmail dot com</p>
</div>
<img src="Images/headshot.jpg" alt="Example Image" class="profile-image">
</div>
<div class="about-container">
<img src="Images/guitar2.jpg" alt="Example Image" class="profile-image">
<div class="text-content">
<p> Music is something that's always played a huge part in my life!
I've been playing various instruments for over a decade. I spent most of
my life playing brass instruments, and was a section leader for the lower brass
in my high school marching band. In the past I learned how to play the trumpet, trombone,
sousaphone/tuba, and the harmonica. As of late, I've been spending most of my time learning
how to play guitar!
</p>
<p> I also really enjoy collecting records and listening to music! I like all kinds
of music, but mostly listen to lots of rock music. My current favorite bands are:
<a href="https://open.spotify.com/artist/2RhgnQNC74QoBlaUvT4MEe?si=ZYkZym5qQKuCTmsGoX6ZMA">The Grolwers</a>,
<a href="https://open.spotify.com/artist/64tNsm6TnZe2zpcMVMOoHL?si=VkgGvReQS7yAfKVvGA8JuQ">Alice In Chains</a>,
<a href="https://open.spotify.com/artist/0WCo84qtCKfbyIf1lqQWB4?si=-IAfYJeOSbCuP5gZ-A6pTg">Geese</a>, and
<a href="https://open.spotify.com/artist/6XYvaoDGE0VmRt83Jss9Sn?si=Iu6p3AElQp-B4ypgbVfocQ"> KGLW</a>.
</p>
</div>
</div>
</section>
</main>
<footer>
<p>© 2025 Emmet Larson. All rights reserved.</p>
</footer>
</body>
</html>