- Created responsive blog layout with hero section, navigation, and footer - Implemented modern CSS with gradients, animations, and mobile-first design - Added interactive JavaScript for mobile menu, smooth scrolling, and scroll effects - Created blog post structure with sample welcome post - Added Font Awesome icons and Google Fonts integration - Implemented modern blog card design with hover effects - Added about and contact sections for complete blog experience 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
219 lines
No EOL
7.2 KiB
HTML
219 lines
No EOL
7.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Welcome to My Blog - Pawel Orzech</title>
|
|
<link rel="stylesheet" href="../style.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<style>
|
|
.post-header {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 120px 0 80px 0;
|
|
margin-top: 70px;
|
|
}
|
|
|
|
.post-content {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 60px 20px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.post-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
margin-bottom: 2rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.post-title {
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.post-subtitle {
|
|
font-size: 1.2rem;
|
|
opacity: 0.9;
|
|
text-align: center;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.back-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
background: white;
|
|
color: #2563eb;
|
|
padding: 12px 24px;
|
|
text-decoration: none;
|
|
border-radius: 25px;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.back-button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
|
|
}
|
|
|
|
.post-content h2 {
|
|
color: #1f2937;
|
|
font-size: 2rem;
|
|
margin: 2rem 0 1rem 0;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.post-content h3 {
|
|
color: #374151;
|
|
font-size: 1.5rem;
|
|
margin: 1.5rem 0 1rem 0;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.post-content p {
|
|
color: #4b5563;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.post-content blockquote {
|
|
background: #f9fafb;
|
|
border-left: 4px solid #2563eb;
|
|
padding: 1rem 1.5rem;
|
|
margin: 2rem 0;
|
|
font-style: italic;
|
|
border-radius: 0 8px 8px 0;
|
|
}
|
|
|
|
.post-content code {
|
|
background: #f3f4f6;
|
|
padding: 2px 6px;
|
|
border-radius: 4px;
|
|
font-family: 'Courier New', monospace;
|
|
font-size: 0.9rem;
|
|
color: #1f2937;
|
|
}
|
|
|
|
.post-navigation {
|
|
background: #f9fafb;
|
|
padding: 40px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.post-title {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.post-content {
|
|
padding: 40px 15px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar">
|
|
<div class="nav-container">
|
|
<div class="nav-logo">
|
|
<h2>Pawel Orzech</h2>
|
|
</div>
|
|
<ul class="nav-menu">
|
|
<li class="nav-item">
|
|
<a href="../index.html" class="nav-link">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="../index.html#blog" class="nav-link">Blog</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="../index.html#about" class="nav-link">About</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="../index.html#contact" class="nav-link">Contact</a>
|
|
</li>
|
|
</ul>
|
|
<div class="hamburger">
|
|
<span class="bar"></span>
|
|
<span class="bar"></span>
|
|
<span class="bar"></span>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<header class="post-header">
|
|
<div class="container">
|
|
<h1 class="post-title">Welcome to My Blog</h1>
|
|
<p class="post-subtitle">The beginning of a new journey in sharing thoughts and ideas</p>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="post-content">
|
|
<a href="../index.html#blog" class="back-button">
|
|
<i class="fas fa-arrow-left"></i>
|
|
Back to Blog
|
|
</a>
|
|
|
|
<div class="post-meta">
|
|
<span><i class="fas fa-calendar"></i> September 7, 2025</span>
|
|
<span><i class="fas fa-tag"></i> Welcome</span>
|
|
<span><i class="fas fa-clock"></i> 3 min read</span>
|
|
</div>
|
|
|
|
<h2>Hello World!</h2>
|
|
|
|
<p>Welcome to my personal blog! This is my first post, and I'm excited to begin this journey of sharing my thoughts, experiences, and ideas with you.</p>
|
|
|
|
<p>Starting a blog has been something I've been thinking about for a while. There's something magical about putting thoughts into words and sharing them with the world. Whether you're here by accident or intention, I'm glad you stopped by.</p>
|
|
|
|
<h3>What You Can Expect</h3>
|
|
|
|
<p>This blog will be a mix of various topics that interest me:</p>
|
|
|
|
<ul>
|
|
<li><strong>Technology & Development:</strong> Insights from my coding journey, useful tips, and interesting discoveries in the world of software development.</li>
|
|
<li><strong>Personal Thoughts:</strong> Reflections on life, learning, and growth.</li>
|
|
<li><strong>Creative Ideas:</strong> Random thoughts and creative projects that inspire me.</li>
|
|
</ul>
|
|
|
|
<blockquote>
|
|
"The best time to plant a tree was 20 years ago. The second best time is now." - Chinese Proverb
|
|
</blockquote>
|
|
|
|
<p>I believe in the power of sharing knowledge and experiences. Every post here will be written with the hope that it might help someone, spark an idea, or simply provide an interesting read during your coffee break.</p>
|
|
|
|
<h3>Let's Connect</h3>
|
|
|
|
<p>I'd love to hear from you! Feel free to reach out through the contact section on the main page. Whether you have feedback, questions, or just want to say hello, I'm always open to connecting with fellow readers and learners.</p>
|
|
|
|
<p>Thank you for being here at the beginning of this journey. Here's to many more posts, ideas, and connections ahead!</p>
|
|
|
|
<p><em>Happy reading!</em><br>
|
|
Pawel</p>
|
|
</main>
|
|
|
|
<div class="post-navigation">
|
|
<div class="container">
|
|
<a href="../index.html#blog" class="cta-button">
|
|
<i class="fas fa-arrow-left"></i>
|
|
Back to All Posts
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<p>© 2025 Pawel Orzech. All rights reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="../script.js"></script>
|
|
</body>
|
|
</html> |