-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
38 lines (38 loc) · 934 Bytes
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css" />
<script type="importmap">
{
"imports": {
"mobimath": "./node_modules/mobimath/index.js"
}
}
</script>
</head>
<body>
<h1>
<p>Find out the value!</p>
<p id="counter">0</p>
</h1>
<input type="text" id="value1" value=0>
<input type="text" id="value2" value=0>
<p>
<span>
<button id="adding">
Add your values!
</button>
<button id="subtracting">
Subtract your values!
</button>
<button id="multiplying">
Multiply your values!
</button>
<button id="dividing">
Divide your values!
</button>
</span>
</p>
<script src="index.js" type="module"></script>
</body>
</html>