forge/examples/spa/index.html
2025-12-29 12:21:58 -08:00

19 lines
382 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/main.css"/>
<title>Forge SPA Examples</title>
<style>
html, body {
margin: 0;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/spa.js"></script>
</body>
</html>