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?