12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <link href="./css/style.css" type="text/css" rel="stylesheet">
- <title>Debug Local Data | Zipcode Wilmington</title>
- </head>
- <body>
- <header class="main-header group">
- <div class="title"><h1>Zipcode Wilmington<br>Javascript Lab - Fall 2015</h1></div>
- <div class="lesson-link"><img src="./images/logos/js_logo.png" alt="Javascript"/></div>
- <div class="zip-link"><img src="./images/logos/zip_logo.jpg" alt="Zipcode Wilmington"/></div>
- </header>
-
- <article>
- <h1>Instructions</h1>
- <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>
- <p>Use the developer tools in your browser to debug and fix the code.</p>
- </article>
-
- <section>
- <h1>Program Output</h1>
- <div id="result">
- <canvas id="c"></canvas>
- </div>
- </section>
-
- <script type="text/javascript" src="js/colors.js"></script>
- <script type="text/javascript" src="js/index.js"></script>
- </body>
- </html>
|