index.html 1.1KB

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link href="./css/style.css" type="text/css" rel="stylesheet">
  6. <title>Debug Local Data | Zipcode Wilmington</title>
  7. </head>
  8. <body>
  9. <header class="main-header group">
  10. <div class="title"><h1>Zipcode Wilmington<br>Javascript Lab - Fall 2015</h1></div>
  11. <div class="lesson-link"><img src="./images/logos/js_logo.png" alt="Javascript"/></div>
  12. <div class="zip-link"><img src="./images/logos/zip_logo.jpg" alt="Zipcode Wilmington"/></div>
  13. </header>
  14. <article>
  15. <h1>Instructions</h1>
  16. <p>Your missioin is to debug js/colors.js. The javascript application depends on this file to feed it the color data to write to screen.</p>
  17. <p>Use the developer tools in your browser to debug and fix the code.</p>
  18. </article>
  19. <section>
  20. <h1>Program Output</h1>
  21. <div id="result">
  22. <canvas id="c"></canvas>
  23. </div>
  24. </section>
  25. <script type="text/javascript" src="js/colors.js"></script>
  26. <script type="text/javascript" src="js/index.js"></script>
  27. </body>
  28. </html>