-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.5 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ProcCalc</title>
<link rel="stylesheet" href="style.css">
<script src="work.js"></script>
<script src="calc.js"></script>
<link rel="shortcut icon" href="icon.svg">
<link rel="apple-touch-icon" href="icon.svg"/>
</head>
<body>
<h1>ProcCalc</h1>
<p><a href="https://ci.appveyor.com/project/Sharkbyteprojects/proccalc" target="_blank"><img src="https://ci.appveyor.com/api/projects/status/5mymqx7j2y7xoe6i?svg=true" alt="You are Offline. You can't display Informations about Build"></a></p>
<h2>Prozentwertberechnung:</h2>
<p>
<div id="gesa">Gesamtwert: <input type="number" id="ges"/></div><br>
<div id="teils">Teilwert: <input type="number" id="tei"/></div>
</p><p><button onclick="worke(false)">Calc</button> <button onclick="worke(true)">Reset</button></p>
<p id="savesd"></p>
<hr>
<h2>Teilwertberechnung:</h2>
<p>
<div id="gesa">Gesamtwert: <input type="number" id="gesasa"/></div><br>
<div id="proz">Prozentwert: <input type="number" id="procse"/>%</div></p>
<p><button onclick="workedfl(false)">Calc</button> <button onclick="workedfl(true)">Reset</button></p>
<p id="targest"></p>
<script>
if('serviceWorker' in navigator){
navigator.serviceWorker.register('sw.js');
}
</script>
</body>
</html>