-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparametric-surface.html
49 lines (45 loc) · 1.33 KB
/
parametric-surface.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
<!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>
<script src="lib/C5.js"> </script>
<script src="parametric-surface.js"> </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;
}
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>
</div>
</body>
</html>