<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>HTML5 Template</title> <style> canvas { border: 1px solid; } </style> </head> <body> <form> <label for="octave">Octave: </label> <input type="range" id="octave" min="1" max="5" step="1" value="3" /> <label for="persist">Persistance: </label> <input type="range" id="persist" min="0.1" max="0.7" step="0.1" value="0.3" /> <button id="random">New Random #s</button> <br /> <br/> </form> <canvas id="canvas" width="400" height="400"></canvas> <script src="js/jsPerlinNoise.js"></script> </body> </html>