Skip to content

Instantly share code, notes, and snippets.

@natling
Created June 29, 2018 20:25
Show Gist options
  • Save natling/b8dd1ecd981a9bc9828433c5f7b8f6b6 to your computer and use it in GitHub Desktop.
Save natling/b8dd1ecd981a9bc9828433c5f7b8f6b6 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>space invaders</title>
<style>
body {
margin: 0;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: rgb(32, 32, 32);
}
</style>
</head>
<script src="libraries/p5.min.js"></script>
<script src="space-invaders.js"></script>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment