domingo, 28 de abril de 2024

fruit ninja

 <!DOCTYPE html>

<html>

  <head>

    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>Fruit Ninja Game</title>

    <style>

      /* Set the width of the page to match the device width */

      body {

        width: 100%;

        margin: 0;

        padding: 0;

      }

      /* Center the webpage content */

      .container {

        width: 80%;

        margin: 0 auto;

      }

      /* Make the iframe responsive */

      .iframe-container {

        position: relative;

        width: 100%;

        padding-bottom: 56.25%; /* 16:9 */

        height: 0;

      }

      .iframe-container iframe {

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 100%;

      }

    </style>

  </head>

  <body>

    <div class="container">

      <div class="iframe-container">

        <iframe src="https://games-site.github.io/projects/fruit-ninja/index.html"></iframe>

      </div>

    </div>

  </body>

</html>


Postagem mais recente Postagem mais antiga

Qual é o seu comentário