first commit

This commit is contained in:
2024-03-27 10:02:47 +01:00
commit ba71a36b94
3 changed files with 219 additions and 0 deletions

15
fleur2vie.html Normal file
View File

@@ -0,0 +1,15 @@
<html>
<head>
<script type="text/javascript" src="fleur2vie.js"></script>
</head>
<body>
<canvas id="f2v_calvas" width="1000px" height="1000px"></canvas>
<script type="text/javascript">
window.onload = function() {
setTimeout(function(){
main();
}, 1000);
}
</script>
</body>
</html>