Files
smpark.in/Resources/Views/home.leaf
2025-02-08 12:30:06 -08:00

110 lines
3.3 KiB
Plaintext

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stephen Parkinson</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #121212;
color: #ffffff;
}
header {
background-color: #1e1e1e;
padding: 20px;
text-align: center;
border-bottom: 2px solid #9370db !important;
}
header h1 {
margin: 0;
color: #9370db !important;
}
header img {
max-width: 150px;
height: auto;
border-radius: 50%;
border: 2px solid #9370db !important;
margin: 10px 0;
}
a:link,
a:visited {
color: #9370db !important;
text-decoration: none;
transition: background-color 0.3s, color 0.3s;
}
a:hover {
background-color: #9370db !important;
color: #ffffff !important;
}
a:active {
background-color: #9370db !important;
color: #ffffff !important;
}
section {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #1e1e1e;
border-radius: 10px;
box-sizing: border-box;
}
section img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto 20px auto;
border-radius: 10px;
border: 2px solid #9370db !important;
}
footer {
text-align: center;
padding: 20px;
background-color: #1e1e1e;
border-top: 2px solid #9370db !important;
}
</style>
</head>
<body>
<header>
<img
src="/images/me.jpg"
alt="Stephen Parkinson"
/>
<h1>Stephen Parkinson</h1>
<p>Systems Development Engineer</p>
</header>
<section id="about">
<h2>About Me</h2>
<p>I'm doing a lot of stuff with computers right now.</p>
</section>
<section id="image">
<img
src="images/trees.jpg"
alt="Project Image"
/>
</section>
<section id="contact">
<h2>Contact</h2>
<p>
Connect with me on
<a
href="https://www.linkedin.com/in/stephen-parkinson"
target="_blank"
>LinkedIn</a
>.
</p>
<p>
Check out my work on
<a href="https://github.com/smparkin" target="_blank"
>GitHub</a
>.
</p>
</section>
<footer>
<p>&copy; 2024 Stephen Parkinson. All rights reserved.</p>
</footer>
</body>
</html>