24 lines
676 B
HTML
24 lines
676 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Local-First Geometry App</title>
|
|
<link rel="stylesheet" href="src/style.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Bereich für Buttons, um neue Formen anzulegen -->
|
|
<div id="controls">
|
|
<button id="addCircleButton">Kreis hinzufügen</button>
|
|
<button id="addTriangleButton">Dreieck hinzufügen</button>
|
|
</div>
|
|
|
|
<!-- Canvas, auf dem wir die Formen zeichnen -->
|
|
<canvas id="shapesCanvas" width="600" height="400"></canvas>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
|
|
</html> |