Skip to content

Instantly share code, notes, and snippets.

@eirabben
Created October 16, 2018 05:33
Show Gist options
  • Save eirabben/e8f2f55312cb4815dbc3864855dc76f9 to your computer and use it in GitHub Desktop.
Save eirabben/e8f2f55312cb4815dbc3864855dc76f9 to your computer and use it in GitHub Desktop.
Pong - Setup
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Pong</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="game"></div>
<script src="main.js"></script>
</body>
</html>
body {
margin: 0;
padding: 0;
}
console.log('test')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment