1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<html lang="en"> <head> <meta charset="UTF-8" /> <style> body { background: #526864; } canvas { width: 100%; height: 100%; background-color: white; } </style> <title>gems</title> </head> <script type="module"> import init from './gems.js' init() </script> </html>