Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

Button
Cor#0066ff
Texto-----------------Portal de Convênios----------------
Linkhttps://tdn.totvs.com/pages/viewpage.action?pageId=808014158

HTML
<!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 Personalizado</title>
  <style>
    /* Estilo padrão do botão */
    .botao {
      background-color: #001f3f; /* Azul escuro */
      color: #ffffff; /* Fonte branca */
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
    }

    /* Estilo do botão quando o mouse passa por cima */
    .botao:hover {
      background-color: #2ecc71; /* Verde claro */
    }
  </style>
</head>
<body>

  <!-- Botão com o rótulo "Portal de Convênios" e link -->
  <a class="botao" href="https://tdn.totvs.com/pages/viewpage.action?pageId=808014158">Portal de Convênios</a>

</body>
</html>