-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.9 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 1.9 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>nuPlot</title>
<meta
name="description"
content="A small graphing calculator and Algebra System"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@miniBill" />
<meta name="twitter:creator" content="@miniBill" />
<meta property="og:url" content="https://nuplot.netlify.app/" />
<meta property="og:title" content="nuPlot" />
<meta
property="og:description"
content="A small graphing calculator and Algebra System"
/>
<meta property="og:image" content="./img/screenshot.png" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css"
media="print"
onload="this.media='all'"
integrity="sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X"
crossorigin="anonymous"
/>
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script
async
src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js"
integrity="sha384-g7c+Jr9ZivxKLnZTDUhnkOnsh30B4H0rpLUpJ4jAIKs4fnJI+sEnkvrMWph2EDg4"
crossorigin="anonymous"
></script>
</head>
<body>
<main></main>
<script src="./build/main.js"></script>
<script src="./src/js/localforage.min.js"></script>
<script type="module" src="./src/js/index.js"></script>
<noscript
>Unfortunately this application relies on Javascript for working,
because it runs its computations in your browser. Enable Javascript
to let it run.</noscript
>
</body>
</html>