-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (60 loc) · 2.48 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
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<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=Roboto:ital,wght@0,400;0,700;1,400&family=Vollkorn:ital@0;1&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-n8MVd4RsNIU0tAv4ct0nTaAbDJwPJzDEaqSD1odI+WdtXRGWt2kTvGFasHpSy3SV" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" integrity="sha384-XjKyOOlGwcjNTAIQHIpgOno0Hl1YQqzUOEleOLALmuqehneUG+vnGctmUb0ZY0l8" crossorigin="anonymous"></script>
<style>
:root { --serif: 'Vollkorn', serif;
--sanserif: 'Roboto', sans-serif;
}
#main {
font-family: var(--serif);
font-size: calc(1em + 0.5vw);
width: max(600px, 70vw);
margin: 20px auto;
}
#nav {
display: flex;
font-family: var(--sanserif);
}
#nav a {
margin: 5px 20px;
text-decoration: none;
font-variant: small-caps;
color: black;
}
a {
color: blue;
text-decoration: none;
}
h2 {
font-size: 120%;
font-weight: normal;
}
</style>
</head>
<body>
<div id="main">
<div id="nav"> <span><a href="/interactive-math/">home</a></span> </div>
<h2> Interactive js apps for math </h2>
<ul>
<li> <a href="complex-mult.html"> Complex multiplication. </a> </li>
<li> <a href="complex-roots.html">Complex roots.</a> </li>
<li> <a href="circle-prop.html">Circle of proportional distance.</a> </li>
<li> <a href="appolonian.html">Appolonian circles.</a> </li>
<li> <a href="complex-map-1.html">Complex mapping in Cartesean coordinates, I</a> </li>
<li> <a href="complex-map-2.html">Complex mapping in polar coordinates, I</a> </li>
<li> <a href="complex-limit.html">Visualizaing complex limits using polar mapping</a> </li>
<li> <a href="partial-sums.html">Visualizaing partial sums of a real series.</a> </li>
<li> <a href="complex-mapping-exp-trig.html">Complex mapping in Cartesean coordinates, II - Exponential and Trigonometric functions.</a> </li>
<li> <a href="complex-mapping-polar-log.html">Complex mapping in polar coordinates, II -- Log and general powers.</a> </li>
<li> <a href="function-visualizer.html">Visualize functions</a> </li>
<li> <a href="parametric-curve.html">Visualise parametric curves</a> </li>
<li> <a href="parametric-surface.html">Visualise parametric surface</a> </li>
</ul>
</div>
</body>
</html>