• 07-02-2024, 17:05:29
    #1
    Merhabalar,

    Benim sitemden farklı siteye yönlendirme yapınca tarayıcı ve tarayıcı botları o linki gözleme almaması için olduğunu öğrendim ve siteme eklemeye çalışıyordum.


    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <style>
        body {
          margin: 0;
          padding: 0;
          position: relative;
        }
    
        #whatsapp-container,
        #telegram-container {
          position: fixed;
          z-index: 9999;
          cursor: pointer;
        }
    
        #whatsapp-container {
          bottom: 10px;
          left: 10px;
        }
    
        #telegram-container {
          bottom: calc(10px + 60px + 0.5cm); /* 10px (WhatsApp) + 60px (ikon yüksekliği) + 0.5cm (boşluk) */
          left: 10px;
        }
    
        .social-icon {
          width: 60px;
          height: 60px;
        }
      </style>
    </head>
    <body>
      <!-- WhatsApp resmi -->
      <div id="whatsapp-container">
        <a href="https://wa.me/84584014733" rel='nofollow'>
          <img class="social-icon" src="whatsapp.png" alt="WhatsApp">
        </a>
      </div>
    
      <!-- Telegram resmi -->
      <div id="telegram-container">
        <a href="https://t.me/RoketBayim" rel='nofollow'>
          <img class="social-icon" src="telegram.png" alt="Telegram">
        </a>
      </div>
    </body>
    </html>
    Ben böyle ekledim,hata varsa düzeltebilir misiniz?
  • 07-02-2024, 17:11:01
    #2
    Doğru
  • 07-02-2024, 17:11:58
    #3
    OnurOzden adlı üyeden alıntı: mesajı görüntüle
    Doğru
    Teşekkürler hocam,Whatsappdan iletişime geçip 1 soru daha soracağım.
  • 07-02-2024, 17:42:22
    #4
    Üyeliği durduruldu
    doğrusu: rel="nofollow"
  • 07-02-2024, 19:10:54
    #5
    En iyisi sanırım
    Evet doğru.