blob: 8357a5539c7b1197b48c576c44218bc1c0937aa9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<title>wasm fib</title>
<link
href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<p>go ahead, type a number</p>
<div id="input-area">
<input id="input" type="text" autocomplete="off" />
<button id="compute">compute!</button>
</div>
<p>fib.wasm says:</p>
<span id="result"></span>
<script src="index.js"></script>
</body>
</html>
|