<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniel Okonski - Personal Website</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background: linear-gradient(135deg, #3498db, #2c3e50);
color: #fff;
text-align: center;
padding: 2rem 0;
}
h1 {
margin: 0;
font-size: 2.5rem;
}
nav {
background-color: #2c3e50;
padding: 1rem;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 1rem;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #3498db;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
.card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
margin-bottom: 2rem;
}
footer {
background-color: #2c3e50;
color: #fff;
text-align: center;
padding: 1rem 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Daniel Okonski</h1>
<p>IT Professional | Web Developer | Problem Solver</p>
</header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<main>
<section id="about" class="card">
<h2>About Me</h2>
<p>Hello! I'm Daniel Okonski, an IT professional with a passion for web development and problem-solving. I specialize in creating efficient and user-friendly digital solutions.</p>
</section>
<section id="projects" class="card">
<h2>My Projects</h2>
<ul>
<li>Project 1: Description of your first project</li>
<li>Project 2: Description of your second project</li>
<li>Project 3: Description of your third project</li>
</ul>
</section>
<section id="contact" class="card">
<h2>Get in Touch</h2>
<p>Email: your.email@example.com</p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/daniel-okonski-7929781a" target="_blank">Daniel Okonski</a></p>
<p>GitHub: <a href="https://github.com/okiest" target="_blank">okiest</a></p>
</section>
</main>
<footer>
<p>© 2025 Daniel Okonski. All rights reserved.</p>
</footer>
</body>
</html>