Files
Vanillae/sidekick/scratch/examples_old/examples_html/hello.html
T
pharpend cbb117b504 Pharpend/develop (#1)
* move stuff in here

* reorganizing because zx needs to feel special

* add base58/base64 explainer draft
2022-10-05 23:30:49 +09:00

28 lines
601 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../style.css">
<title>Hello world: Sidekick</title>
</head>
<body>
<ul>
<li>
<a href="/">Home</a>
<ul>
<li><a href="../">Examples</a></li>
<ul><li><b>Hello world</b></li></ul>
</ul>
</li>
</ul>
<h1>Sidekick Example: Hello World</h1>
<h4>Check the console</h4>
<script type="module">
import * as sk from '../sidekick_dist/dist_js/sidekick.js';
sk.hello();
</script>
</body>
</html>