devserver/web/index.html

16 lines
232 B
HTML
Raw Permalink Normal View History

2021-09-06 22:16:35 +00:00
<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>