personal-site/index.html

26 lines
795 B
HTML
Raw Permalink Normal View History

2025-04-16 19:26:35 -04:00
<!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: 330px; top: 200px"><img src="src/javascript.svg"></div>
2025-04-16 19:26:35 -04:00
<div id="pointer"></div>
</body>
</html>