-
Notifications
You must be signed in to change notification settings - Fork 0
/
chaos.html
45 lines (43 loc) · 1.37 KB
/
chaos.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
<!DOCTYPE html>
<html>
<head>
<title>playing with Chaos</title>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<link rel="stylesheet" href="reset.css" />
<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=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Playing with Chaos</h1>
</header>
<div class="container">
<aside>
<nav>
<ul>
<li>
<span>Index</span>
</li>
<li>
<a href="0_SourceCode/">0 SourceCode</a>
</li>
<li>
<a href="1_sample/">1 Sample</a>
</li>
<li>
<a href="2_Sierpinski/">2.1 The Sierpinksi Triangle</a>
</li>
<li>
<a href="2_Koch/">2.2 The Koch Curve</a>
</li>
</ul>
</nav>
</aside>
<main>
</main>
</div>
</body>
</html>