Merge pull request #649 from mojoaxel/648-78_Sine_Wave-html

add html for 78_Sine_Wave
This commit is contained in:
Jeff Atwood
2022-03-18 11:14:42 -05:00
committed by GitHub

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>