-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
41 lines (36 loc) · 1.63 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>About Me</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="thoughts_on_writing.html">My Thoughts on Writing</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Hi, I'm Sam Hutchins</h2>
<p>Welcome to my personal website! I’m passionate about data and communication. This website is a space where I share my thoughts, essays, and projects.</p>
<h3>Background</h3>
<p>I have a degree in applied math from Lyndon State College, Northern Vermont University, and Vermont State Univeristy. Over the years, I have become very passionate about finding new and exciting ways data can help business leaders make decisions.</p>
<h3>Interests</h3>
<p>In my free time, I enjoy DIY, reading, and golfing.</p>
<h3>Get in Touch</h3>
<p>If you’d like to connect, feel free to reach out via <a href="mailto:[email protected]">email</a> or check out my projects on <a href="https://github.com/Sam-Hutchins" target="_blank">GitHub</a>.</p>
</section>
</main>
<footer>
<p>© 2024 My Personal Website | <a href="https://github.com/Sam-Hutchins" target="_blank">My GitHub</a></p>
</footer>
</body>
</html>