recipes/accessible-page/index.html
One file of recipes/accessible-page, at commit 9a5bb24.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- The two facts the mount checks for: a language on the root, and a title. -->
<title>Send a note</title>
<!-- A theme entry cannot reach body, and its default margin shows as a band around the page. -->
<style>body { margin: 0 }</style>
</head>
<body>
<script type="module" src="./entry.tsx"></script>
</body>
</html>