-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (58 loc) · 2.91 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Seth Neubauer Portfolio</title>
<link rel="stylesheet" href="styles.css">
<!--Google Fonts links-->
<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=Kanit:wght@400;700&display=swap" rel="stylesheet">
<!--Icons Links-->
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
</head>
<body>
<header>
<a href="index.html"><h1 class="site-title">Seth Neubauer</h1></a>
<nav class="site-nav">
<ul>
<li><a href="index.html" class="active">About</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contacts.html">Contact</a></li>
<li><a href="https://www.linkedin.com/in/sethneubauer/" target="_blank"><i class='bx bxl-linkedin-square'></i></a></li>
<li><a href="https://github.com/neubauerseth" target="_blank"><i class='bx bxl-github'></i></a></li>
</ul>
</nav>
</header>
<main>
<section class="profile">
<img src="images/Website Profile Picture.png" alt="Profile Picture">
<p>Student at Michigan State University Pursuing a Bachelors of Science in Computer Science and a Minor in Business
with career interests in software/tech, sports, photography and film.
</p>
</section>
<section>
<h2>About Me</h2>
<p>I'm currently a univerity student at Michigan State Univeristy, I am majoring in Computer Scinece
and minoring in Business, I plan to graduate summer of 2025.
I have a interest in coding, particualrly web design, artifical intelligence, and machine learning.
When not on the computer, I enjoy playing sports such as soccer, golf, pickle ball, and many more.
I also enjoy watching motorsports, particualarly Formula 1, Indy Car and IMSA.
I also enjoy photography and making videos. When not busy
focusing on my self I enjoy spending time with friends and family.
</p>
<p>
I recently finished up my spring semester doing a study abroad program out in Amsterdam Netherlands and
I am Currently looking for an internship for this upcomming Fall 2024 Semester. So if my skills and interests
align with you company feel free to reach out!
</p>
</section>
</main>
<footer class="footer">
<hr>
<p>Seth Neubauer 2024</p>
</footer>
</body>
</html>