-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title> ManyTinyApp</title>
<style>
body
{
background-color: rgb(190,150,120);
}
ol
{
padding: 25px;
margin:10px;
background-color: rgb(100,200,250);
}
a{
transition-duration: 0.15s;
text-decoration: none;
color:black;
font-size: 22px;
font-family: platino;
}
a:hover{
color: white;
font-size: 27px;
background-color: black;
}
</style>
</head>
<body>
<center>
<h1 id="mainHeading"> ManyTinyApplications </h1>
<div>
Playing around for no reason
</div>
</center>
<hr>
<ol start="0">
<li><a href="SineCosine/SineCosine.html"> Sine And Cosine Visualization </a></li>
<li><a href="Pendulum/pendulum.html"> Pendulum </a></li>
<li><a href="MovableSquare/movablesquare.html"> Movable Square </a></li>
<li><a href="normalDistribution/index.html"> Dancing Blob (Normal Distribution)</a></li>
<li><a href="3dCube/simpleCube.html"> 3D Rotating Cube (Orthographic Projection) </a></li>
<li><a href="PointInPolygon/index.html"> Point In Polygon (RayCast Algorithm) </a></li>
<li><a href="signedDistance/index.html"> Signed Distance Function (Circle) </a></li>
</ol>
</body>
</html>