| <html lang="ko"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>HTML Tetris</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <h1>HTML Tetris</h1> | |
| <div class="game-container"> | |
| <canvas id="tetris-board" width="300" height="600"></canvas> | |
| <div class="game-info"> | |
| <h2>Score</h2> | |
| <p id="score">0</p> | |
| <button id="start-button">Start Game</button> | |
| </div> | |
| </div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> |