document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <title>Horner\'s Method</title>
  7.         <link rel="stylesheet" href="./style.css">
  8.         <script src="./index.js" type="text/javascript" charset="utf-8" async defer></script>
  9.     </head>
  10.     <body>
  11.         <center>
  12.     <h1>Horner\'s Method Calculator</h1>
  13.         <input id=\'x\' type=\'number\' placeholder=\'Val of X\' autofocus />
  14.         <input id=\'count\' type=\'number\' placeholder=\'Nums\' />
  15.     <ul id=\'nums\'></ul>
  16.     <input id=\'enter\' type=\'button\' value=\'Calculate Horner\' />
  17.     <div id=\'results\'></div>
  18.     </center>
  19. </body>
  20. </html>
');