trianta.dev/pong.html

15 lines
275 B
HTML
Raw Normal View History

2023-01-26 15:53:19 -06:00
<!DOCTYPE html>
<html>
2023-01-26 21:05:55 -06:00
2023-01-26 15:53:19 -06:00
<head>
2023-01-26 21:05:55 -06:00
<title>Basic Pong HTML Game</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
2023-01-26 15:53:19 -06:00
</head>
<body>
2023-01-26 21:05:55 -06:00
<canvas width="750" height="585" id="game"></canvas>
<script src="scripts.js"></script>
2023-01-26 15:53:19 -06:00
</body>
2023-01-26 21:05:55 -06:00
2023-01-26 15:53:19 -06:00
</html>