Last active
April 29, 2019 16:01
-
-
Save carlosbaraza/43332cdff656f5aa9452cd536d77b21d to your computer and use it in GitHub Desktop.
Hopefully simple WebAssembly starting guide - index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<style> | |
html, | |
body { | |
height: 100%; | |
margin: 0; | |
overflow: hidden; | |
} | |
canvas { | |
width: 100%; | |
height: 100%; | |
} | |
</style> | |
</head> | |
<body style="background: #fff"> | |
<canvas id="canvas"></canvas> | |
<script src="./main.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment