-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
60 lines (47 loc) · 2.45 KB
/
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
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>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Cache-Control" content="no-cache" />
<title>Notepad Calculator</title>
<meta name="description" content="For jotting down quick calculations. Type free-form text and see the results of any calculations appear in the margin.">
<meta name="author" content="Steve Ridout"/>
<meta name="keywords" content="Arithmetic, Sums, Notepad, Calculator, Maths, Mathematics, Scratch-pad, Back of the envelope calculation, Quick and dirty calculator">
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/11.5.0/math.js" integrity="sha512-PRRHSwgn8QJinp43y5B698YK/FApqSvwmd7kVu8NWMksCl/3daKnNbPNWPuGKDrpIIb+0Dg5W55VSbZi0QG60Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js" integrity="sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="calc.js"></script>
<link href='https://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css'>
<link href='calc.css' rel='stylesheet' type='text/css'>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-68050471-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<h1>Notepad Calculator</h1>
<p>For jotting down quick calculations</p>
<div class="left matchingArea">
Calculations
<br/>
============
</div><div class="right matchingArea">
Answers
<br/>
=======
</div>
<div class="mainContainer">
<ul class="backgroundRuler matchingArea">
</ul>
<textarea id=inputArea wrap=off class="matchingArea left">
</textarea><ul id=outputArea class="matchingArea right"></ul>
</div>
<ul id=footer style="text-align:center">
<li><a href='https://github.com/SteveRidout/notepad-calculator'>Source code on GitHub</a></li>
<li>Created by <a href="http://steveridout.com/about">Steve Ridout</li>
</ul>
</body>
</html>