devserver/web/index.html
2021-09-07 00:16:35 +02:00

16 lines
232 B
HTML

<html>
<head>
<meta charset="utf-8">
<script type="module">
import { check } from "./web-check.js";
check();
</script>
</head>
<body>
<h1>Test</h1>
<p>Should get an alert...</p>
</body>
</html>