<!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>θ</th><th>sin(θ)</th><th>cos(θ)</th></tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>