<!doctype html> <!--Author: Morrison--> <html lang="en"> <head> <title>tableBuilder</title> <meta charset="utf-8"/> <link rel="stylesheet" href="tableBuilder.css"/> <script src="tableBuilder.js"> </script> </head> <body> <h1>Trig Table Builder</h1> <p class="display"> start: <input type="text"></input> stop: <input type="text"></input> step: <input type="text"></input> </p> <p class="display"><button>build!</button></p> <table style="display:none"> <thead> <th>&theta;</th><th>sin(&theta;)</th><th>cos(&theta;)</th></tr> </thead> <tbody> </tbody> </table> </body> </html>