-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (33 loc) · 1.26 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Smoku Smoku</title>
<link rel="stylesheet" href="styles/simple.css" type="text/css"/>
<script src="scripts/simple.js" type="text/javascript"></script>
</head>
<body>
<div>
<div class="headingBlock">
<h2>A Very <span id="simple">Cancerous</span> Web Application</h2>
<h4>Kindergartener Edition</h4>
</div>
<div>
<input id="number1" type="text" size="4"/>
<label><img src="images/green addition op.png" onClick="doIt()"></label>
<input id="number2" type="text" size="4"/>
<label><img src="images/green addition op.png" onClick="doIt()"></label>
<input id="number3" type="text" size="4"/>
<label><img src="images/blue equals op.png" onClick="doIt()"></label>
<label id="answer"></label>
</div>
<div>
<button id="doIt" type="button" onClick="doIt()">Magic</button>
</div>
<div>
copy; <a href="http://leekspin.com">RMITafe</a>
</div>
</div>
</body>
</html>
<!-- HTML comment -->