initial commit

This commit is contained in:
ultrablob 2025-04-16 19:26:35 -04:00
commit 6d6dbc8c13
8 changed files with 863 additions and 0 deletions

26
index.html Normal file
View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1920, initial-scale=1.0">
<title>Physics Test</title>
<script type="module" src="src/main.js"></script>
<link href="src/styles.css" rel="stylesheet" />
</head>
<body>
<div class="box" style="left: 100px; top: 500px"><h1>my</h1></div>
<div class="box" style="left: 200px; top: 500px"><h1>website</h1></div>
<div class="box" style="left: 120px; top: 420px">welcome</div>
<div class="box" style="left: 240px; top: 360px">to</div>
<div class="box" style="left: 100px; top: 620px">(it's still a work in progress)</div>
<div class="box" style="left: 300px; top: 200px"><img src="src/javascript.svg"></div>
<div id="pointer"></div>
</body>
</html>