Zadanie III JS

Zadanie III JS
Moja Firma

O nas

Jesteśmy nowoczesną firmą oferującą najwyższej jakości usługi.

Naszym celem jest wspieranie klientów w rozwoju i dostarczanie rozwiązań szytych na miarę.

Zobacz nasze portfolio
O nas

Galeria

Usługi

  • Konsultacje biznesowe
  • Projektowanie stron internetowych
  • Marketing cyfrowy

Nasze podejście

Dbamy o indywidualne potrzeby każdego klienta. Nasze usługi web developmentu obejmują pełny zakres – od projektowania po wdrożenie.

Cennik usług

Przykładowy cennik naszych usług:
Usługa Cena netto Czas realizacji
Konsultacje biznesowe 300 zł / godz. 1–2 dni
Projektowanie stron od 2500 zł 2–4 tygodnie
Marketing cyfrowy 1500 zł / mies. ciągła współpraca
* Ceny orientacyjne – dokładna wycena po kontakcie

Kontakt

✉️ Poproś o ofertę

📞 123-456-789

📱 Wyślij SMS

Adres: ul. Przykładowa 1, 00-000 Warszawa

Formularz kontaktowy

Podaj swoje dane:
Preferowany sposób kontaktu:

© 2025 Moja Firma. Wszelkie prawa zastrzeżone.

// CSS /* === RESET === */ * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: Arial, sans-serif; line-height: 1.6; background: #f5f7fa; color: #333; } /* === KONTAINER === */ .container { max-width: 1200px; margin: 0 auto; padding: 20px; } /* === HEADER + MENU === */ header { position: sticky; top: 0; background: #222; color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 15px 30px; z-index: 1000; } header .logo { display: flex; align-items: center; } header .logo img { height: 50px; margin-right: 10px; } nav ul { display: flex; list-style: none; gap: 20px; } nav a { color: #fff; text-decoration: none; font-weight: bold; transition: color 0.3s ease; } nav a:hover, nav a.active { color: #4db6ff; } .header-buttons { display: flex; gap: 10px; } .btn { background: #4db6ff; color: #fff; padding: 8px 15px; border-radius: 6px; text-decoration: none; transition: background 0.3s ease; } .btn:hover { background: #3399dd; } .btn-outline { background: transparent; border: 2px solid #4db6ff; color: #4db6ff; } .btn-outline:hover { background: #4db6ff; color: #fff; } /* === NAGŁÓWKI === */ h1, h2, h3 { margin-bottom: 15px; font-family: 'Segoe UI', sans-serif; } h2 { font-size: 2rem; color: #222; border-bottom: 3px solid #4db6ff; display: inline-block; margin-bottom: 25px; } h3 { color: #444; margin-top: 20px; } /* === SEKCJE === */ section { padding: 60px 80px; } .two-columns { display: flex; gap: 30px; flex-wrap: wrap; } .two-columns img { flex: 1 1 300px; border-radius: 10px; } .two-columns p { flex: 2 1 400px; } .onas-container { display: flex; align-items: center; /* wyśrodkowanie w pionie */ justify-content: space-between; gap: 40px; } .onas-text { flex: 1; } .onas-text h2 { margin-bottom: 20px; } .onas-text p { margin-bottom: 15px; line-height: 1.6; } .onas-img { flex: 1; text-align: right; } .onas-img img { max-width: 100%; border-radius: 10px; } /* === GALERIA === */ .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } .gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .gallery-grid img:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.2); } /* === MODEL OBRAZKÓW === */ .gallery-grid a { position: relative; } .gallery-grid a::after { content: "🔍"; position: absolute; bottom: 8px; right: 8px; font-size: 20px; color: #fff; } /* === TABELA === */ table { width: 100%; border-collapse: collapse; margin-top: 20px; } thead { background: #4db6ff; color: #fff; } th, td { padding: 12px; border: 1px solid #ddd; text-align: left; } tbody tr:nth-child(even) { background: #f2f2f2; } /* === FORMULARZ === */ form { display: grid; gap: 15px; max-width: 600px; } fieldset { border: 1px solid #ccc; border-radius: 8px; padding: 15px; } legend { font-weight: bold; } label { display: block; margin-bottom: 5px; } input, select, textarea { width: 100%; padding: 8px; margin-bottom: 10px; border-radius: 6px; border: 1px solid #ccc; transition: border 0.3s ease, box-shadow 0.3s ease; } input:focus, select:focus, textarea:focus { border-color: #4db6ff; box-shadow: 0 0 8px rgba(77,182,255,0.5); outline: none; } button { background: #4db6ff; color: #fff; padding: 10px; border: none; border-radius: 6px; cursor: pointer; transition: background 0.3s ease; } button:hover { background: #3399dd; } /* === ASIDE === */ aside { background: #fff; padding: 20px; margin: 20px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } /* === FOOTER === */ footer { background: #222; color: #fff; text-align: center; padding: 20px; margin-top: 40px; } /* === BREADCRUMB === */ .breadcrumb { font-size: 0.9rem; margin-bottom: 15px; } .breadcrumb a { color: #4db6ff; text-decoration: none; } .breadcrumb a:hover { text-decoration: underline; } /* === RESPONSYWNOŚĆ === */ @media (max-width: 768px) { header { flex-direction: column; align-items: flex-start; } nav ul { flex-direction: column; gap: 10px; } .two-columns { flex-direction: column; } .header-buttons { margin-top: 10px; } }