Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="pl">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Mój Blog</title>
- <style>
- :root { --primary-color: #2D3748; --accent-color: #3182CE; --bg-color: #F7FAFC; --text-color: #2A2A2A; --light-text: #4A5568; }
- * { box-sizing: border-box; margin: 0; padding: 0; }
- body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }
- header { background-color: var(--primary-color); padding: 1rem 0; }
- nav { max-width: 960px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
- .logo { font-size: 1.5rem; font-weight: bold; color: #fff; text-decoration: none; }
- .nav-links a { margin-left: 1.5rem; color: #fff; text-decoration: none; font-size: 1rem; transition: color 0.3s; }
- .nav-links a:hover { color: var(--accent-color); }
- main { max-width: 960px; margin: 2rem auto; padding: 0 1rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
- article { background-color: #fff; border-radius: 0.5rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); overflow: hidden; display: flex; flex-direction: column; }
- .post-img { width: 100%; height: 200px; object-fit: cover; }
- .post-content { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
- .post-content h2 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--primary-color); }
- .post-content p { flex: 1; color: var(--light-text); margin-bottom: 1rem; }
- .post-content a { align-self: flex-start; text-decoration: none; color: var(--accent-color); font-weight: bold; transition: color 0.3s; }
- .post-content a:hover { color: var(--primary-color); }
- footer { text-align: center; padding: 2rem 0; color: var(--light-text); font-size: 0.9rem; }
- </style>
- </head>
- <body>
- <header>
- <nav>
- <a href="#" class="logo">Mój Blog</a>
- <div class="nav-links">
- <a href="#">Home</a>
- <a href="#">About</a>
- <a href="#">Contact</a>
- </div>
- </nav>
- </header>
- <main>
- <article>
- <img src="https://via.placeholder.com/600x200" alt="Post 1" class="post-img">
- <div class="post-content">
- <h2>Jak zacząć przygodę z programowaniem?</h2>
- <p>Pierwszy krok w nauce programowania może wydawać się trudny, ale z odpowiednim podejściem szybko poczujesz postępy...</p>
- <a href="post1.html">Czytaj więcej</a>
- </div>
- </article>
- <article>
- <img src="https://via.placeholder.com/600x200" alt="Post 2" class="post-img">
- <div class="post-content">
- <h2>Najlepsze narzędzia dla front-end developerów</h2>
- <p>Wybór odpowiednich narzędzi jest kluczowy dla efektywnej pracy. Oto lista must-have dla każdego developera...</p>
- <a href="post2.html">Czytaj więcej</a>
- </div>
- </article>
- </main>
- <footer>
- © 2025 Mój Blog. Wszelkie prawa zastrzeżone.
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement