dynamic-system-dot-plot/index.html
Christian Lawson-Perfect bdbb9f81e0 first commit
2025-02-09 20:08:45 +00:00

18 lines
No EOL
485 B
HTML

<!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>