-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 2.34 KB
/
index.html
File metadata and controls
65 lines (65 loc) · 2.34 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
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A beautiful and simple free online scientific calculator that supports trigonometry, complex numbers, calculus, algebra, physical constants and more. Designed for use in Physics, Mathematics and Engineering."
/>
<title>Pionium | Scientific Calculator</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Pionium",
"url": "https://pionium.app/"
}
</script>
<meta name="theme-color" content="#000000" />
<!-- icons -->
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/icon.svg" sizes="any" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
<!-- for mathquill -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script
type="module"
src="node_modules/mathquill/build/mathquill.min.js"
></script>
<link rel="stylesheet" href="src/assets/configure_mathquill.css" />
<!-- reset margin -->
<style>
body,
#app {
margin: 0px;
padding: 0px;
width: 100dvw;
height: 100svh;
}
</style>
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap"
rel="stylesheet"
/>
</head>
<body class="dark:bg-[#292e32ff]">
<script type="module" src="/src/init.js"></script>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script
type="module"
src="node_modules/flowbite/dist/flowbite.min.js"
></script>
<script type="module" src="node_modules/preline/dist/preline.js"></script>
</body>
</html>