Kodlar
Cyberpunk Footer .html
Cyberpunk Footer .html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<footer class="cyber-footer">
  <div class="footer-content">
    <div class="footer-links">
      <a href="#">HAKKIMIZDA</a>
      <a href="#">GÜVENLİK</a>
      <a href="#">İLETİŞİM</a>
    </div>
    <p class="copyright">NPMSHARE © 2026</p>
  </div>
</footer>

<style>
  .cyber-footer {
    background: #000;
    border-top: 2px solid #ff0000;
    padding: 30px 0;
    font-family: sans-serif;
    clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%);
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer-links {
    display: flex;
    gap: 25px;
  }
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .footer-links a:hover { color: #ff0000; }
  .copyright { color: #ff0000; font-size: 10px; margin: 0; }
</style>
0Beğeni
52Görüntülenme
Kod Bilgisi
DilHTML
Satır38
Karakter887
Tarih01.05.2026
Açıklama

HTML ve CSS ile hazırlanmış, CyberPunk temalı footer şablonu

Etiketler
#webdesign