-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1018 Bytes
/
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
<html>
<head>
<script src="math.js"></script>
</head>
<body>
<center>
<table>
<h1>Pro Laskin 2023</h1>
<h3>Tää on live, ei tarvitse painaa enteriä</h3>
<label id="otiskko1">Ensimmainen numero:</label>
<input oninput="last()" type="text" id="n1" name="num1" value="0">
<br>
<label id="otiskko2">Tioinen numbero:</label>
<input oninput="last()" type="text" id="n2" name="num2" value="0">
<br>
<br>
<label id="result">Summa on 0</label>
<br>
<button onclick="divide()" type="button">Divide</button>
<button onclick="plus()" type="button">Plus</button>
<button onclick="minus()" type="button">Minus</button>
<button onclick="multiply()" type="button">Multiply</button>
<button onclick="clearMath()" type="button">Clear!</button>
</table>
</center>
</body>
</html>