Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

[Dúvida] DUVIDA

boa noite, alguém sabe me informar porque não esta aparecendo correto o icone do instagram, obrigado

<!DOCTYPE html>
<html lang="pt-BR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Botão Flutuante Instagram</title>
  <style>
    
    .instagram-float {
      position: fixed;
      bottom: 120px; 
      right: 40px; 
      background-color: #E1306C; 
      color: white;      
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 1px 1px 2px #888;     
      text-decoration: none;
      font-size: 30px;      
      z-index: 1000;
      text-align: center;
    }

    .instagram-float:hover {
      transform: scale(1.1);
    }
  </style>
</head>
<body>  
  <a href="https://www.instagram.com/sabrina_kibatata" target="_blank" class="instagram-float" aria-label="Instagram">
     </a>
  <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</body>
</html>
1 resposta
solução!

Olá! O problema é que está faltando o ícone do Instagram dentro do botão. Você já está incluindo corretamente o Font Awesome. Só falta colocar a tag i dentro da âncora:

<a href="https://www.instagram.com/sabrina_kibatata" target="_blank" class="instagram-float" aria-label="Instagram">
  <i class="fab fa-instagram"></i>
</a>

Se ainda não aparecer, verifique a conexão com a internet (Font Awesome é carregado via CDN) e se a extensão do navegador não está bloqueando ícones (algumas extensões de privacidade fazem isso).