aboutsummaryrefslogtreecommitdiff
path: root/02_library_modularized/index.html
blob: 4b3141753712c0881c7bfcd9e4993c85daa5581d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<html lang="en-US">
<head>
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width" />
	<title>Multiply two numbers</title>
	<script src="./script.mjs" type="module" defer></script>
</head>

<body>
	<input id="aInput" /> x <br />
	<input id="bInput" /> <button id="goButton">=</button> <br />
	<p id="resultText"></p>
</body>

</html>

Generated with cgit - Back to sebastiano.tronto.net