Files
2D-verlet-integration/main.html
2022-01-24 11:58:37 +01:00

22 lines
424 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="main.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
canvas {
border:1px solid #d3d3d3;
background-color: #ffffff;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
</style>
</head>
<body onload="startGame()" class="center">
<br>
</body>
<html>