-
Notifications
You must be signed in to change notification settings - Fork 0
/
panesul.html
60 lines (33 loc) · 1.71 KB
/
panesul.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html>
<head>
<title>Panesul - Fechamento</title>
<link rel="shortcut icon" href="./Panesul.png">
<link rel="stylesheet" type="text/css" href="panesul.css">
</head>
<script type="text/javascript" src="./script.js"></script>
<body>
<h1 class="titulo" id="h1">Fechamento de caixa</h1>
<div class="maquinasDinheiro">
<p class="banrisul"> Banrisul 1 <input type="number" id="banri1"></p>
<p class="banrisul"> Banrisul 2 <input type="number" id="banri2"></p>
<p class="banrisul" id="banrisulTotal">Total: </p></p>
<button onclick="banrisulSoma()">Total</button>
<p class="stone"> Stone 1 <input type="number" id="stone1"></p>
<p class="stone"> Stone 2 <input type="number" id="stone2"></p>
<p class="stone" id="stoneTotal">Total: </p></p>
<button onclick="stoneSoma()">Total</button>
<p > Cielo <input type="number" id="cielo"> </p>
<p id="cieloTotal">Total: </p></p>
<button onclick="cieloSoma()">Total</button>
<p class="dinheiro"> Dinheiro <input type="number" id="dinheiro"></p>
<p class="dinheiro"> Pix <input type="number" id="pix"></p>
<p class="dinheiro" id="dinheiroTotal">Total: </p></p>
<button onclick="total()">Total</button>
<br><br> <button onclick="calculadora()"> Somar </button>
<input class="input" type="number" id="soma">
<br><br> <button onclick="calculadora2()"> Subtrair </button>
<input class="input" type="number" id="Subtrair">
</div>
</body>
</html>