16 lines
232 B
HTML
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>
|