-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
48 lines (48 loc) · 2.45 KB
/
about.html
File metadata and controls
48 lines (48 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="styles.css">
<title>About - Seth McKnight</title>
</head>
<body>
<header>
<h1>Seth McKnight</h1>
<nav>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="posts.html">Posts</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about-me">
<h2>About Me</h2>
<img src="https://via.placeholder.com/150" alt="Seth McKnight" class="profile-pic">
<p>I'm Seth, a servant leader and strategic thinker working with Software Engineering and Product teams. I enable individuals to do their best work, empower teams to solve hard problems, and equip organizations to execute on strategic priorities.</p>
<p>This is my Portfolio website, initially created as part of the Codecademy Front-End and Full Stack Engineer career paths. You'll find my projects, contact info, and more about me here.</p>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2025 Seth McKnight. All rights reserved.</p>
<div class="social-icons">
<a href="https://linkedin.com/in/seth-mcknight" target="_blank"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/sethmcknight" target="_blank"><i class="fa fa-github"></i></a>
<a href="https://twitter.com/sethmcknight" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://instagram.com/sethmcknight" target="_blank"><i class="fa fa-instagram"></i></a>
</div>
<p>Contact: <a href="mailto:sethmcknight1991@gmail.com">Seth McKnight</a></p>
<p>Location: <a href="https://www.google.com/maps/place/Colorado_Springs,+CO" target="_blank">Colorado Springs, CO</a></p>
</div>
<div class="footer-bottom">
<p>Built with <a href="https://www.codecademy.com/" target="_blank">Codecademy</a></p>
</div>
</footer>
</body>
</html></div>