mirror of
https://codeberg.org/uzu/strudel
synced 2026-08-17 10:07:44 -04:00
19 lines
648 B
HTML
19 lines
648 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Strudel Starter</title>
|
|
</head>
|
|
<body style="margin: 0; padding: 0">
|
|
<div id="container" style="background-color: indigo; display: flex; justify-content: center; align-items: center; height: 100vh">
|
|
<center>
|
|
<h1>Strudel Starter Template</h1>
|
|
<button id="start" style="font-size: 3em">start</button>
|
|
</center>
|
|
</div>
|
|
<script type="module" src="/main.js"></script>
|
|
</body>
|
|
</html>
|