18 lines
487 B
HTML
18 lines
487 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>MDN Breakout</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<canvas id="myCanvas" width="480" height="320"></canvas>
|
|
<footer>
|
|
Built with ♥ via <a
|
|
href="https://developer.mozilla.org/en-US/docs/Games/Workflows/Breakout_game_from_scratch">the
|
|
MDN breakout from scratch tutorial</a>.
|
|
</footer>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|