<html lang="en"> <head> <script type="module" src="main.js"></script> <title> Newton Fractal </title> </head> <body> <h1 id ="Main Heading"></h1> <canvas id="canvas" width="400" height="400"></canvas> <br> <label for = "xmin">Minimum X Value</label> <input type="number" id="xmin"/> <br> <label for = "ymin">Minimum Y Value</label> <input type="number" id="ymin"/> <br> <label for = "width">Width/Height</label> <input type="number" id="width"/> <br> <input type="button" id = "doit" value="Change Values"/> <div id="output"> </div> </body> </html>