mirror of
https://github.com/Astatin3/IntroToWebAuthoring.git
synced 2026-06-08 16:18:01 -06:00
20 lines
436 B
HTML
20 lines
436 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<link data-trunk rel="rust" />
|
||
|
|
<style>
|
||
|
|
* {
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
background-color: black;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<canvas
|
||
|
|
id="canvas"
|
||
|
|
style="position: fixed; width: 100%; height: 100%"
|
||
|
|
></canvas>
|
||
|
|
<script data-trunk src="js/index.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|