27 lines
634 B
HTML
27 lines
634 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="format-detection" content="telephone=no" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>Sunani</title>
|
|
<link rel="stylesheet" href="sunani.css" />
|
|
<script
|
|
type="module"
|
|
src="sunani.js"
|
|
data-wasm="app-go/demo.wasm">
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<a href="about.html">About Sunani</a>
|
|
/
|
|
<a href="list.html">List</a>
|
|
</div>
|
|
<canvas id="c"></canvas><br />
|
|
<pre id="con"></pre>
|
|
<input id="input" type="text" autocomplete="off"
|
|
placeholder="Type here and press Enter" /><br />
|
|
</body>
|
|
</html>
|