-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.html
More file actions
27 lines (22 loc) · 671 Bytes
/
module.html
File metadata and controls
27 lines (22 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cyphr.me UMD Test</title>
<!-- There is no `module_umd_lib.js` import because modules imports that file. -->
<script type="module" src="module.js"></script>
</head>
<body>
<main>
<h1>This is the module test.</h1>
<h4>See console</h4>
<h4>This page will **not** work with `file://` and has to be sent by a server. </h4>
<p>
<a href="module.html">module.html</a><br>
<a href="non-module.html">non-module.html</a><br>
<a href="var_enc.html">var_enc.html</a><br>
</p>
</main>
</body>
</html>