-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrekenmachine.html
More file actions
72 lines (64 loc) · 1.31 KB
/
rekenmachine.html
File metadata and controls
72 lines (64 loc) · 1.31 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>oefen</title>
<link rel="stylesheet" type="text/css" href="rekenmachine.css">
<script type="text/javascript" src="rekenmachine.js"></script>
</head>
<header id="bovenkant">
<h1>Rekenmachine</h1>
</header>
<body>
<table>
<tr>
<td>
Voer een getal in:
</td>
<td>
<input id="firstLetter" name="firstLetter" type="" required>
</td>
</tr>
<tr>
<td>
</td>
<td>
<input type="radio" id="plus" name="reken" value="+" checked>+
<input type="radio" id="min" name="reken" value="-">-
<input type="radio" id="delen" name="reken" value="/">/
<input type="radio" id="keer" name="reken" value="*">*
</td>
</tr>
<tr>
<td>
Voer een getal in:
</td>
<td>
<input id="lastLetter" name="lastLetter" type="" required>
</td>
</tr>
<tr>
<td>
</td>
<td style="float:right;">
=
</td>
</tr>
<tr>
<td>
totaal:
</td>
<td>
<input id="totaal" name="totaal" disabled="disabled">
</td>
<tr>
<td>
</td>
<td>
<input id="knop" type="button" value="klik hier" onclick="Rekensom()"> <input id="knop" type="button" value="clear" onclick="Clear()">
</td>
</tr>
</tr>
</table>
<footer id="onderkant"><h5>Gemaakt door roan ettema</h5></footer>
</body>
</html>