Á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
<head>
    	<style>
    .btn-playstore {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-size: 14px;
      font-weight: bold;
      transition: background 0.3s;
    }

    .btn-playstore:hover {
      background-color: #202020;
    }

    .btn-playstore img {
      height: 24px;
      width: auto;
    }
  	</style>
</head>
<body>

    <!-- 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>




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.

...