-
Notifications
You must be signed in to change notification settings - Fork 71
/
index.html
31 lines (28 loc) · 1.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!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 mission 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>