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 f7deaba4a1
commit 07ef4d9dc0

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>