newton.html

URL: http://147.64.242.52/~bennett/class/cmsc3780/spring2026/notes/javascript/code/start_class/newton.html
 
<html lang="en">
<head>

    <script type="module" src = "main.js"></script> 
    <title> Newton Fractal </title>

</head>

<body>

    <h1 id = "title"> The Newton Fractal</h1>

    <canvas id="MyCanvas" height="400" width="400"
          style="border: 2px solid black;">
    </canvas>
 
    <br>
    <label for="inset">Inset Value</label>
    <input id="inset" type=number value="0" />
    <br>
    <button id="doit">Redraw</button>

    <div id="output">
    </div>

</body>
</html>