first commit

This commit is contained in:
Christian Lawson-Perfect 2025-02-09 20:08:41 +00:00
commit bdbb9f81e0
4 changed files with 125 additions and 0 deletions

18
index.html Normal file
View file

@ -0,0 +1,18 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>A thing made by CLP</title>
<link rel="stylesheet" href="style.css">
<script type="module" src="script.js"></script>
</head>
<body>
<main>
<svg viewBox="-1 -1 2 2">
<line class="axis" x1="-1" x2="1" y1="0" y2="0"></line>
<line class="axis" y1="-1" y2="1" x1="0" x2="0"></line>
</svg>
</main>
</body>
</html>