add html for 78_Sine_Wave

This commit is contained in:
Alexander Wunschik
2022-03-17 09:28:13 +01:00
committed by Alexander Wunschik
parent 62f3781403
commit 756b7dd2b1

View File

@@ -0,0 +1,16 @@
<html>
<head>
<title>SINE WAVE</title>
<link rel="stylesheet" href="../../00_Utilities/javascript/style_terminal.css" />
</head>
<body>
<pre id="output"></pre>
<script>
/* redirect console.log messages to the output-element in the DOM */
window.console = {
log: (text) => document.getElementById("output").innerHTML += text + "<br>"
}
</script>
<script src="sinewave.js"></script>
</body>
</html>