-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="content-language" content="en" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Computergrafik 3</title>
<link href="css/main.scss" rel="stylesheet" type="text/css">
<script type="module">
import { LaTeXJSComponent } from "https://cdn.jsdelivr.net/npm/latex.js/dist/latex.mjs";
customElements.define("latex-js", LaTeXJSComponent);
</script>
</head>
<body>
<h1 class="positionStatic">Computergrafik 3</h1>
<div id="links">
<div class="card card1">
<a class="heading" href="modules/lineareInterpolation/lineareInterpolation.html">Polynom Interpolation</a>
</div>
<div class="card card2">
<a class="heading" href="modules/hermite/hermite.html">Hermite Interpolation</a>
</div>
<div class="card card3">
<a class="heading" href="modules/bezier/bezier.html">Bézier Interpolation</a>
</div>
</div>
<div id="namen">
<p>Sophie Fürhoff & Tobias Wylega</p>
</div>
</body>
</html>