-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (20 loc) · 797 Bytes
/
index.html
File metadata and controls
22 lines (20 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Fun With For Loops</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- for loop visualization -->
<div id='box_div'></div>
<!-- for loop input -->
<form>
for (var i = <input type="text" id="init" maxlength="2" size="2">
, i < <input type="text" id="cond" maxlength="2" size="2">
, i += <input type="text" id="update" maxlength="2" size="2"> );
<br><input type="button" onclick="try_answer()" value="Go!">
</form>
<script src="raphael.js" type="text/javascript" charset="utf-8"></script>
<script src="forloops.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>