This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fmwcalc.html
56 lines (55 loc) · 2.23 KB
/
fmwcalc.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
<html>
<head>
<!--Stylesheet-->
<link rel="stylesheet" type="text/css" href="styles.css">
<!--Prettify-->
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
<script src="jquery-1.10.2.js"></script>
<script src="https://widget.battleforthenet.com/widget.js" async></script>
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<title>FMW Calc | TurboWafflz</title>
</head>
<body>
<embed class="banner" src='banner.html'>
<hr>
<div class="logo">
<b><h1 onclick='window.href("https://turbowafflz.github.io")'>TurboWafflz</h1></b>
</div>
<hr>
<!--Buttons-->
<div id="buttons">
<a href="nojs.html">No JavaScript?</a>
</div>
<script>
$(function(){
$("#buttons").load("buttons.html");
});
</script>
<hr style="height:5px;">
<br>
<center><h3>FMW Calc (discontinued)</h3></center>
A very simple calculator. This will no longer be updated and is here for archival purposes only. If you are looking for a calculator, try <a href="iicalc.html">IICalc</a> which has replaced this project.
<br>
<br>
<hr>
<div class="fancyButtons" id="fancyButtons">
<button style='background-color: green; color:white; width:300px;' onclick='window.open("calc.sh")'>Download</button>
</div>
<noscript>
<a href="calc.sh">Download</a>
</noscript>
<script>
document.getElementById('fancyButtons').style.display='block';
</script>
<footer>
<hr style="height:5px;">
<embed src="copyright.html">
</footer>
</body>
</html>