• Sign in

rust / easel3d · Files

Dogs2 white

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Snippets
  • Network
  • easel3d
  • www
  • index.html
  • remove rust learning stuff
    3087691d
    Georg Hopp authored
    2020-01-11 11:41:44 +0100  
    Browse Files »
index.html 580 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>wasm-game-of-life!</title>
    <style>
        body {
            position:        absolute;
            top:             0;
            left:            0;
            width:           100%;
            height:          100%;
            display:         flex;
            flex-direction:  column;
            align-items:     center;
            justify-content: center;
        }
    </style>
  </head>
  <body>
    <canvas id="view3d"></canvas>
    <script src="./bootstrap.js"></script>
  </body>
</html>