mirror of
https://github.com/PavelDoGreat/WebGL-Fluid-Simulation.git
synced 2026-01-18 14:06:54 +00:00
19 lines
352 B
HTML
19 lines
352 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas></canvas>
|
|
<script src="./script.js"></script>
|
|
</body>
|
|
</html> |