LoginSignup
1
2

More than 5 years have passed since last update.

テトリスをつくってみました  その4 ソースコードindex.html

Posted at

index.html

<!DOCTYPE html>
<html>
    <head>
        <title>HTML5 Tetris</title>
        <link rel='stylesheet' href='style.css' />
    </head>
    <body>
        <audio id="clearsound" src="sound/pop.ogg" preload="auto"></audio>
        <canvas width='300' height='600'></canvas>
        <script src='js/objCopy_lib.js'></script>
        <script src='js/tetris.js'></script>
        <script src='js/tetris2.js'></script>
        <script src='js/controller.js'></script>

    </body>
</html>
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2