Árvore de páginas

Versões comparadas

Chave

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

...

A aplicação estará disponível tanto na Play Store quanto na App Store.


HTML
   <!DOCTYPE html>
<html lang="pt-BR">
<head>
  <meta  <a href="URL_DA_PLAY_STORE_DO_SEU_APP" class="play-store-button">Baixe nosso app nacharset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Botão Play Store</a>title>
	<style>.play-store-button  <style>
    .btn-playstore {
      display: inline-blockflex;
 /* Faz com que o botão se comporte como um bloco */
    padding: 10px 20px;    /* Espaçamento interno do botão */
    align-items: center;
      gap: 10px;
      background-color: #1DB954#000; /* Cor de fundo (exemplo) */

      color: white#fff;
      padding: 10px 20px;
   /* Cor do texto */border-radius: 8px;
      text-decoration: none;
 /* Remove o sublinhado do link */
    border: none;font-family: Arial, sans-serif;
      font-size: 14px;
   /* Remove a borda padrão */font-weight: bold;
    border-radius: 5px; transition: background 0.3s;
 /* Cantos arredondados */}

    font.btn-weightplaystore:hover bold;{
     /* Texto em negrito */ background-color: #202020;
    cursor: pointer;}

    .btn-playstore img {
  /* Muda o cursor para indicar que é clicável */
    text-align: center;height: 24px;
      width: auto;
    /*}
 Centraliza o texto *</style>
}</head>

.play-store-button:hover {<body>

    background-color: #1DB954; /* Cor de fundo ao passar o mouse */
    opacity: 0.9;              /* Torna o botão um pouco transparente */
}</style><!-- Troque o link abaixo pelo da sua aplicação -->
  <a href="https://play.google.com/store/apps/details?id=com.seuaplicativo" target="_blank" class="btn-playstore">
    <img src="https://upload.wikimedia.org/wikipedia/commons/7/78/Google_Play_Store_badge_EN.svg" alt="Google Play">
    Baixar na Play Store
  </a>

</body>
</html>




Para utilizá-la, é necessário possuir um servidor com os fontes devidamente compilados e o link do serviço REST configurado na página inicial, conforme demonstrado anteriormente.

...