-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (42 loc) · 761 Bytes
/
Copy pathindex.html
File metadata and controls
52 lines (42 loc) · 761 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Experiments</title>
<style>
body {
padding: 30px;
padding-left: 60px;
}
p {
font-size: 18px;
}
ul {
margin-top: 50px;
padding-left: 0;
list-style: none;
}
ul > li {
margin: 14px;
padding: 14px;
padding-left: 24px;
width: 200px;
border: 1px solid silver;
border-radius: 28px;
}
ul > li > a {
color: #0f6674;
font-size: 20px;
}
</style>
</head>
<body>
<h1>Experiments</h1>
<ul>
<li><a href="./sineWave/index.html">Sine Wave</a></li>
<li><a href="./matrixRotation/index.html">Matrix Rotation</a></li>
<li><a href="./cubeProjection/index.html">Cube Projection</a></li>
<li><a href="./lisajure/index.html">Lisa Jure Curve Table</a></li>
</ul>
</body>
</html>